]> Git — Sourcephile - gargantext.git/blob - package.yaml
Merge branch 'dev-ngrams-repo' of https://gitlab.iscpif.fr/gargantext/haskell-gargant...
[gargantext.git] / package.yaml
1 name: gargantext
2 version: '4.0.0.3'
3 synopsis: Search, map, share
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 ghc-options:
19 - -Wincomplete-uni-patterns
20 - -Wincomplete-record-updates
21 - -Wmissing-signatures
22 - -Wunused-binds
23 - -Wunused-imports
24 - -Werror
25 exposed-modules:
26 - Gargantext
27 - Gargantext.API
28 - Gargantext.API.Auth
29 - Gargantext.API.Count
30 - Gargantext.API.FrontEnd
31 - Gargantext.API.Node
32 - Gargantext.API.Orchestrator
33 - Gargantext.API.Search
34 - Gargantext.API.Settings
35 - Gargantext.Core
36 - Gargantext.Core.Types
37 - Gargantext.Core.Types.Main
38 - Gargantext.Core.Utils.Prefix
39 - Gargantext.Database
40 - Gargantext.Database.Flow
41 - Gargantext.Database.Schema.Node
42 - Gargantext.Database.Cooc
43 - Gargantext.Database.Tree
44 - Gargantext.Database.Types.Node
45 - Gargantext.Database.Utils
46 - Gargantext.Database.Schema.User
47 - Gargantext.Prelude
48 - Gargantext.Text
49 - Gargantext.Text.Context
50 - Gargantext.Text.Examples
51 - Gargantext.Text.List.CSV
52 - Gargantext.Text.Metrics
53 - Gargantext.Text.Metrics.TFICF
54 - Gargantext.Text.Metrics.CharByChar
55 - Gargantext.Text.Metrics.Count
56 - Gargantext.Text.Parsers
57 - Gargantext.Text.Parsers.CSV
58 - Gargantext.Text.Parsers.Date
59 - Gargantext.Text.Parsers.Wikimedia
60 - Gargantext.Text.Parsers.WOS
61 - Gargantext.Text.Search
62 - Gargantext.Text.Terms
63 - Gargantext.Text.Terms.Stop
64 - Gargantext.Text.Terms.Mono
65 - Gargantext.Text.Terms.Multi.Lang.En
66 - Gargantext.Text.Terms.Multi.Lang.Fr
67 - Gargantext.Text.Terms.Multi.RAKE
68 - Gargantext.Text.Terms.WithList
69 - Gargantext.Text.Flow
70 - Gargantext.Viz.Graph
71 - Gargantext.Viz.Graph.Distances.Matrice
72 - Gargantext.Viz.Graph.Index
73 dependencies:
74 - QuickCheck
75 - accelerate
76 - aeson
77 - aeson-lens
78 - aeson-pretty
79 - async
80 - attoparsec
81 - base >=4.7 && <5
82 - base16-bytestring
83 - blaze-html
84 - bytestring
85 - case-insensitive
86 - cassava
87 #- charsetdetect-ae # detect charset
88 - clustering-louvain
89 - conduit
90 - conduit-extra
91 - containers
92 - contravariant
93 - data-time-segment
94 - directory
95 - duckling
96 - exceptions
97 - filepath
98 - fullstop
99 - fclabels
100 - fast-logger
101 - full-text-search
102 - http-client
103 - http-client-tls
104 - http-conduit
105 - http-api-data
106 - http-types
107 - hsparql
108 - hxt
109 - hlcm
110 - ini
111 - insert-ordered-containers
112 - jose-jwt
113 # - kmeans-vector
114 - KMP
115 - lens
116 - located-base
117 - logging-effect
118 - matrix
119 - monad-logger
120 - mtl
121 - natural-transformation
122 - opaleye
123 - pandoc
124 - parsec
125 - patches-class
126 - patches-map
127 - path
128 - path-io
129 - postgresql-simple
130 - pretty-simple
131 - probability
132 - product-profunctors
133 - profunctors
134 - protolude
135 - pureMD5
136 - SHA
137 - rake
138 - regex-compat
139 - resourcet
140 - rdf4h
141 - safe
142 - semigroups
143 - servant
144 - servant-auth
145 - servant-blaze
146 - servant-client
147 - servant-job
148 - servant-mock
149 - servant-multipart
150 - servant-server
151 - servant-swagger
152 - servant-swagger-ui
153 - servant-static-th
154 - serialise
155 - split
156 - stemmer
157 - string-conversions
158 - swagger2
159 - tagsoup
160 - text-metrics
161 - time
162 - time-locale-compat
163 - timezone-series
164 - transformers
165 - transformers-base
166 - unordered-containers
167 - uuid
168 - validity
169 - vector
170 - wai
171 - wai-cors
172 - wai-extra
173 - warp
174 - wreq
175 - xml-conduit
176 - xml-types
177 - yaml
178 - zip
179 - zlib
180 # - utc
181
182 executables:
183 gargantext-server:
184 main: Main.hs
185 source-dirs: bin/gargantext-server
186 ghc-options:
187 - -O2
188 - -Wcompat
189 - -Wmissing-signatures
190 - -rtsopts
191 - -threaded
192 - -with-rtsopts=-N
193 dependencies:
194 - base
195 - containers
196 - gargantext
197 - vector
198 - cassava
199 - ini
200 - optparse-generic
201 - unordered-containers
202 - full-text-search
203
204 gargantext-cli:
205 main: Main.hs
206 source-dirs: bin/gargantext-cli
207 ghc-options:
208 - -threaded
209 - -rtsopts
210 - -with-rtsopts=-N
211 - -O2
212 - -Wmissing-signatures
213 dependencies:
214 - aeson
215 - async
216 - base
217 - bytestring
218 - containers
219 - gargantext
220 - vector
221 - cassava
222 - ini
223 - optparse-generic
224 - split
225 - unordered-containers
226 - full-text-search
227
228 gargantext-import:
229 main: Main.hs
230 source-dirs: bin/gargantext-import
231 ghc-options:
232 - -threaded
233 - -rtsopts
234 - -with-rtsopts=-N
235 - -O2
236 - -Wmissing-signatures
237 dependencies:
238 - gargantext
239 - base
240 - servant-server
241
242 tests:
243 # garg-test:
244 # main: Main.hs
245 # source-dirs: src-test
246 # ghc-options:
247 # - -threaded
248 # - -rtsopts
249 # - -with-rtsopts=-N
250 # dependencies:
251 # - base
252 # - gargantext
253 # - hspec
254 # - QuickCheck
255 # - quickcheck-instances
256 # - time
257 # - parsec
258 # - duckling
259 # - text
260 garg-doctest:
261 main: Main.hs
262 source-dirs: src-doctest
263 ghc-options:
264 - -O2
265 - -Wcompat
266 - -Wmissing-signatures
267 - -rtsopts
268 - -threaded
269 - -with-rtsopts=-N
270 dependencies:
271 - doctest
272 - Glob
273 - QuickCheck
274 - base
275 - gargantext