]> Git — Sourcephile - gargantext.git/blob - gargantext.cabal
[DRAFT/SPECS] For rights.
[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 , base16-bytestring
22 , bytestring
23 , case-insensitive
24 , containers
25 , contravariant
26 , directory
27 , extra
28 , filepath
29 , http-conduit
30 , lens
31 , opaleye
32 , postgresql-simple
33 , pretty
34 , product-profunctors
35 , profunctors
36 , protolude
37 , pureMD5
38 , regex-compat
39 , semigroups
40 , servant
41 , servant-client
42 , servant-multipart
43 , servant-server
44 , split
45 , tagsoup
46 , text
47 , time
48 , time-locale-compat
49 , transformers
50 , uuid
51 , vector
52 , wai
53 , warp
54 , yaml
55 , zlib
56 -- , stemmer
57 --, utc
58 exposed-modules: Data.Gargantext
59 , Data.Gargantext.Analysis
60 , Data.Gargantext.DSL
61 , Data.Gargantext.NLP
62 , Data.Gargantext.NLP.CoreNLP
63 , Data.Gargantext.Database
64 , Data.Gargantext.Database.Instances
65 , Data.Gargantext.Database.Ngram
66 , Data.Gargantext.Database.Node
67 , Data.Gargantext.Database.NodeNgram
68 , Data.Gargantext.Database.NodeNgramNgram
69 , Data.Gargantext.Database.NodeNode
70 , Data.Gargantext.Database.NodeNodeNgram
71 , Data.Gargantext.Database.Private
72 , Data.Gargantext.Database.User
73 , Data.Gargantext.Parsers
74 , Data.Gargantext.Parsers.Occurrences
75 , Data.Gargantext.Prelude
76 , Data.Gargantext.Server
77 , Data.Gargantext.Types
78 , Data.Gargantext.Types.Node
79 , Data.Gargantext.Types.Main
80 , Data.Gargantext.Utils.DateUtils
81 , Data.Gargantext.Utils.Prefix
82 default-language: Haskell2010
83 ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Werror
84
85 -- -Werror
86
87 --executable gargantext-exe
88 -- hs-source-dirs: app
89 -- main-is: Main.hs
90 -- ghc-options: -threaded -rtsopts -with-rtsopts=-N
91 -- build-depends: base
92 -- , hastext
93 -- default-language: Haskell2010
94
95 test-suite garg-test-parsers
96 type: exitcode-stdio-1.0
97 hs-source-dirs: test
98 main-is: Parsers.hs
99 build-depends: base
100 , extra
101 , text
102 , gargantext
103 , hspec
104 , QuickCheck
105 ghc-options: -threaded -rtsopts -with-rtsopts=-N
106 default-language: Haskell2010