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