]> Git — Sourcephile - gargantext.git/blob - package.yaml
[TEXT-MINING] adding first functions/datatypes.
[gargantext.git] / package.yaml
1 name: gargantext
2 version: '0.1.0.0'
3 synopsis: Deep (Collaborative) Text mining project
4 description: Please see README.md
5 category: Data
6 author: Gargantext Team
7 maintainer: team@gargantext.org
8 copyright:
9 - ! 'Copyright: (c) 2017-2018: see git logs and README'
10 license: BSD3
11 homepage: https://gargantext.org
12 ghc-options: -Wall
13 dependencies:
14 - extra
15 - text
16 library:
17 source-dirs: src
18 default-extensions:
19 - NoImplicitPrelude
20 ghc-options:
21 - -Wincomplete-uni-patterns
22 - -Wincomplete-record-updates
23 - -Werror
24 exposed-modules:
25 - Gargantext
26 - Gargantext.DSL
27 - Gargantext.Database
28 - Gargantext.Database.Instances
29 - Gargantext.Database.Ngram
30 - Gargantext.Database.Node
31 - Gargantext.Database.Facet
32 - Gargantext.Database.NodeNgram
33 - Gargantext.Database.NodeNgramNgram
34 - Gargantext.Database.NodeNode
35 - Gargantext.Database.NodeNodeNgram
36 - Gargantext.Database.Utils
37 - Gargantext.Database.User
38 - Gargantext.Ngrams
39 - Gargantext.Ngrams.Analysis
40 - Gargantext.Ngrams.TFICF
41 - Gargantext.Ngrams.Letters
42 - Gargantext.Ngrams.CoreNLP
43 - Gargantext.Ngrams.Parser
44 - Gargantext.Ngrams.Lang.En
45 - Gargantext.Ngrams.Lang.Fr
46 - Gargantext.Ngrams.Metrics
47 - Gargantext.Ngrams.TextMining
48 - Gargantext.Ngrams.Occurrences
49 - Gargantext.Parsers
50 - Gargantext.Parsers.WOS
51 - Gargantext.Parsers.Date
52 - Gargantext.Prelude
53 - Gargantext.RCT
54 - Gargantext.API
55 - Gargantext.API.Auth
56 - Gargantext.Types
57 - Gargantext.Types.Main
58 - Gargantext.Types.Node
59 - Gargantext.Utils.DateUtils
60 - Gargantext.Utils.Prefix
61 dependencies:
62 - QuickCheck
63 - aeson
64 - aeson-lens
65 - aeson-pretty
66 - async
67 - attoparsec
68 - base >=4.7 && <5
69 - base16-bytestring
70 - bytestring
71 - case-insensitive
72 - conduit
73 - conduit-extra
74 - containers
75 - contravariant
76 - data-time-segment
77 - directory
78 - duckling
79 - filepath
80 - fclabels
81 - fast-logger
82 # - haskell-gi-base
83 - http-conduit
84 - http-api-data
85 - http-types
86 - hxt
87 - ini
88 - jose-jwt
89 - lens
90 - logging-effect
91 - monad-logger
92 - mtl
93 - natural-transformation
94 - opaleye
95 - parsec
96 - path
97 - path-io
98 - postgresql-simple
99 - pretty
100 - product-profunctors
101 - profunctors
102 - protolude
103 - pureMD5
104 - regex-compat
105 - resourcet
106 - safe
107 - semigroups
108 - servant
109 - servant-auth
110 - servant-client
111 - servant-mock
112 - servant-multipart
113 - servant-server
114 - servant-swagger
115 - servant-swagger-ui
116 - servant-static-th
117 - split
118 - swagger2
119 - tagsoup
120 - text-metrics
121 - time
122 - time-locale-compat
123 - timezone-series
124 - transformers
125 - transformers-base
126 - unordered-containers
127 - uuid
128 - vector
129 - wai
130 - wai-cors
131 - wai-extra
132 - warp
133 - yaml
134 - zip
135 - zlib
136 # - utc
137
138 executable:
139 main: Main.hs
140 source-dirs: app
141 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
142 dependencies:
143 - base
144 - gargantext
145 - ini
146 - optparse-generic
147 - unordered-containers
148
149 tests:
150 garg-test:
151 main: Main.hs
152 source-dirs: src-test
153 default-extensions:
154 - NoImplicitPrelude
155 ghc-options:
156 - -threaded
157 - -rtsopts
158 - -with-rtsopts=-N
159 dependencies:
160 - base
161 - gargantext
162 - hspec
163 - QuickCheck
164 - quickcheck-instances
165 - time
166 - parsec
167 - duckling
168 - text
169 garg-doctest:
170 main: Main.hs
171 source-dirs: src-doctest
172 ghc-options:
173 - -Werror
174 - -threaded
175 - -rtsopts
176 - -with-rtsopts=-N
177 dependencies:
178 - doctest
179 - Glob
180 - QuickCheck
181 - base
182 - gargantext