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