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