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