]> Git — Sourcephile - gargantext.git/blob - package.yaml
Merge branch 'pipeline'
[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.Pipeline
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 - lens
74 - logging-effect
75 - matrix
76 - monad-logger
77 - mtl
78 - natural-transformation
79 - opaleye
80 - parsec
81 - path
82 - path-io
83 - postgresql-simple
84 - pretty
85 - product-profunctors
86 - profunctors
87 - protolude
88 - pureMD5
89 - regex-compat
90 - resourcet
91 - safe
92 - semigroups
93 - servant
94 - servant-auth
95 - servant-client
96 - servant-job
97 - servant-mock
98 - servant-multipart
99 - servant-server
100 - servant-swagger
101 - servant-swagger-ui
102 - servant-static-th
103 - split
104 - stemmer
105 - string-conversions
106 - swagger2
107 - tagsoup
108 - text-metrics
109 - time
110 - time-locale-compat
111 - timezone-series
112 - transformers
113 - transformers-base
114 - unordered-containers
115 - uuid
116 - vector
117 - wai
118 - wai-cors
119 - wai-extra
120 - warp
121 - yaml
122 - zip
123 - zlib
124 # - utc
125
126 executables:
127 gargantext:
128 main: Main.hs
129 source-dirs: app
130 ghc-options:
131 - -threaded
132 - -rtsopts
133 - -with-rtsopts=-N
134 - -O2
135 - -Wmissing-signatures
136 dependencies:
137 - base
138 - containers
139 - gargantext
140 - vector
141 - cassava
142 - ini
143 - optparse-generic
144 - unordered-containers
145 - full-text-search
146 gargantext-workflow:
147 main: Main.hs
148 source-dirs: app-workflow
149 ghc-options:
150 - -threaded
151 - -rtsopts
152 - -with-rtsopts=-N
153 - -O2
154 - -Wmissing-signatures
155 dependencies:
156 - base
157 - gargantext
158
159 tests:
160 garg-test:
161 main: Main.hs
162 source-dirs: src-test
163 ghc-options:
164 - -threaded
165 - -rtsopts
166 - -with-rtsopts=-N
167 dependencies:
168 - base
169 - gargantext
170 - hspec
171 - QuickCheck
172 - quickcheck-instances
173 - time
174 - parsec
175 - duckling
176 - text
177 garg-doctest:
178 main: Main.hs
179 source-dirs: src-doctest
180 ghc-options:
181 - -Werror
182 - -threaded
183 - -rtsopts
184 - -with-rtsopts=-N
185 - -Wmissing-signatures
186 dependencies:
187 - doctest
188 - Glob
189 - QuickCheck
190 - base
191 - gargantext