]> Git — Sourcephile - gargantext.git/blob - gargantext.cabal
[FEAT] Adding WOS parser, NLP functions, Rights management guidelines (draft).
[gargantext.git] / gargantext.cabal
1 name: gargantext
2 version: 0.1.0.0
3 synopsis: Deep (Collaborative) Text mining project
4 description: Please see README.md
5 homepage: http://gargantext.org
6 license: BSD3
7 license-file: LICENSE
8 author: Alexandre Delanoë
9 maintainer: gargantext@iscpif.fr
10 copyright: Copyright: (c) 2016,2017 CNRS Alexandre Delanoë
11 category: Data
12 build-type: Simple
13 -- extra-source-files:
14 cabal-version: >=1.10
15
16 library
17 hs-source-dirs: src
18 build-depends: base >= 4.7 && < 5
19 , aeson
20 , attoparsec
21 , async
22 , base16-bytestring
23 , bytestring
24 , case-insensitive
25 , containers
26 , contravariant
27 , conduit
28 , conduit-extra
29 , directory
30 , extra
31 , filepath
32 , http-conduit
33 , lens
34 , opaleye
35 , path
36 , postgresql-simple
37 , pretty
38 , product-profunctors
39 , profunctors
40 , protolude
41 , pureMD5
42 , regex-compat
43 , semigroups
44 , servant
45 , servant-client
46 , servant-multipart
47 , servant-server
48 , split
49 , tagsoup
50 , text
51 , time
52 , time-locale-compat
53 , transformers
54 , uuid
55 , vector
56 , wai
57 , warp
58 , yaml
59 , zlib
60 , zip
61 , path-io
62 --, LibZip
63 -- , stemmer
64 --, utc
65 exposed-modules: Data.Gargantext
66 , Data.Gargantext.Analysis
67 , Data.Gargantext.DSL
68 , Data.Gargantext.Ngrams.Occurrences
69 , Data.Gargantext.NLP
70 , Data.Gargantext.NLP.CoreNLP
71 , Data.Gargantext.Database
72 , Data.Gargantext.Database.Instances
73 , Data.Gargantext.Database.Ngram
74 , Data.Gargantext.Database.Node
75 , Data.Gargantext.Database.NodeNgram
76 , Data.Gargantext.Database.NodeNgramNgram
77 , Data.Gargantext.Database.NodeNode
78 , Data.Gargantext.Database.NodeNodeNgram
79 , Data.Gargantext.Database.Private
80 , Data.Gargantext.Database.User
81 , Data.Gargantext.Parsers
82 , Data.Gargantext.Parsers.WOS
83 , Data.Gargantext.Prelude
84 , Data.Gargantext.Server
85 , Data.Gargantext.Types
86 , Data.Gargantext.Types.Node
87 , Data.Gargantext.Types.Main
88 , Data.Gargantext.Utils.DateUtils
89 , Data.Gargantext.Utils.Prefix
90 default-language: Haskell2010
91 ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Werror
92
93 -- -Werror
94
95 --executable gargantext-exe
96 -- hs-source-dirs: app
97 -- main-is: Main.hs
98 -- ghc-options: -threaded -rtsopts -with-rtsopts=-N
99 -- build-depends: base
100 -- , hastext
101 -- default-language: Haskell2010
102
103 test-suite garg-test-parsers
104 type: exitcode-stdio-1.0
105 hs-source-dirs: test
106 main-is: Parsers.hs
107 build-depends: base
108 , extra
109 , text
110 , gargantext
111 , hspec
112 , QuickCheck
113 ghc-options: -threaded -rtsopts -with-rtsopts=-N
114 default-language: Haskell2010