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