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