]> Git — Sourcephile - gargantext.git/blob - gargantext.cabal
Missing file
[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-client
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-multipart
41 , servant-server
42 , servant
43 , servant-client
44 , split
45 -- , stemmer
46 , tagsoup
47 , text
48 , time
49 , time-locale-compat
50 , transformers
51 --, utc
52 , uuid
53 , vector
54 , wai
55 , warp
56 , zlib
57 exposed-modules: Data.Gargantext
58 , Data.Gargantext.Analysis
59 , Data.Gargantext.DSL
60 , Data.Gargantext.NLP
61 , Data.Gargantext.NLP.CoreNLP
62 , Data.Gargantext.Database
63 , Data.Gargantext.Database.Instances
64 , Data.Gargantext.Database.Ngram
65 , Data.Gargantext.Database.Node
66 , Data.Gargantext.Database.NodeNgram
67 , Data.Gargantext.Database.NodeNgramNgram
68 , Data.Gargantext.Database.NodeNode
69 , Data.Gargantext.Database.NodeNodeNgram
70 , Data.Gargantext.Database.Private
71 , Data.Gargantext.Database.User
72 , Data.Gargantext.Parsers
73 , Data.Gargantext.Parsers.Occurrences
74 , Data.Gargantext.Prelude
75 , Data.Gargantext.Server
76 , Data.Gargantext.Types
77 , Data.Gargantext.Types.Node
78 , Data.Gargantext.Types.Main
79 , Data.Gargantext.Utils.DateUtils
80 , Data.Gargantext.Utils.Prefix
81 default-language: Haskell2010
82 ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Werror
83
84 -- -Werror
85
86 --executable gargantext-exe
87 -- hs-source-dirs: app
88 -- main-is: Main.hs
89 -- ghc-options: -threaded -rtsopts -with-rtsopts=-N
90 -- build-depends: base
91 -- , hastext
92 -- default-language: Haskell2010
93
94 test-suite garg-test-parsers
95 type: exitcode-stdio-1.0
96 hs-source-dirs: test
97 main-is: Parsers.hs
98 build-depends: base
99 , extra
100 , text
101 , gargantext
102 , hspec
103 , QuickCheck
104 ghc-options: -threaded -rtsopts -with-rtsopts=-N
105 default-language: Haskell2010