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