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