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