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