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