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