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