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