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