]> Git — Sourcephile - gargantext.git/blob - package.yaml
[PHYLO] Minimal example with first function to get periodes.
[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
115 - product-profunctors
116 - profunctors
117 - protolude
118 - pureMD5
119 - SHA
120 - rake
121 - regex-compat
122 - resourcet
123 - safe
124 - semigroups
125 - servant
126 - servant-auth
127 - servant-client
128 - servant-job
129 - servant-mock
130 - servant-multipart
131 - servant-server
132 - servant-swagger
133 - servant-swagger-ui
134 - servant-static-th
135 - split
136 - stemmer
137 - string-conversions
138 - swagger2
139 - tagsoup
140 - text-metrics
141 - time
142 - time-locale-compat
143 - timezone-series
144 - transformers
145 - transformers-base
146 - unordered-containers
147 - uuid
148 - vector
149 - wai
150 - wai-cors
151 - wai-extra
152 - warp
153 - yaml
154 - zip
155 - zlib
156 # - utc
157
158 executables:
159 gargantext-server:
160 main: Main.hs
161 source-dirs: bin/gargantext-server
162 ghc-options:
163 - -threaded
164 - -rtsopts
165 - -with-rtsopts=-N
166 - -O2
167 - -Wmissing-signatures
168 dependencies:
169 - base
170 - containers
171 - gargantext
172 - vector
173 - cassava
174 - ini
175 - optparse-generic
176 - unordered-containers
177 - full-text-search
178
179 gargantext-cli:
180 main: Main.hs
181 source-dirs: bin/gargantext-cli
182 ghc-options:
183 - -threaded
184 - -rtsopts
185 - -with-rtsopts=-N
186 - -O2
187 - -Wmissing-signatures
188 dependencies:
189 - aeson
190 - async
191 - base
192 - bytestring
193 - containers
194 - gargantext
195 - vector
196 - cassava
197 - ini
198 - optparse-generic
199 - split
200 - unordered-containers
201 - full-text-search
202
203 tests:
204 # garg-test:
205 # main: Main.hs
206 # source-dirs: src-test
207 # ghc-options:
208 # - -threaded
209 # - -rtsopts
210 # - -with-rtsopts=-N
211 # dependencies:
212 # - base
213 # - gargantext
214 # - hspec
215 # - QuickCheck
216 # - quickcheck-instances
217 # - time
218 # - parsec
219 # - duckling
220 # - text
221 garg-doctest:
222 main: Main.hs
223 source-dirs: src-doctest
224 ghc-options:
225 - -Werror
226 - -threaded
227 - -rtsopts
228 - -with-rtsopts=-N
229 - -Wmissing-signatures
230 dependencies:
231 - doctest
232 - Glob
233 - QuickCheck
234 - base
235 - gargantext