]> Git — Sourcephile - gargantext.git/blob - package.yaml
Integrate the orchestrator with a route to query scrapyd
[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 default-extensions:
19 ghc-options:
20 - -Wincomplete-uni-patterns
21 - -Wincomplete-record-updates
22 - -Werror
23 exposed-modules:
24 - Gargantext
25 - Gargantext.Database
26 - Gargantext.Database.Instances
27 - Gargantext.Database.Ngram
28 - Gargantext.Database.Node
29 - Gargantext.Database.Facet
30 - Gargantext.Database.NodeNgram
31 - Gargantext.Database.NodeNgramNgram
32 - Gargantext.Database.NodeNode
33 - Gargantext.Database.NodeNodeNgram
34 - Gargantext.Database.Utils
35 - Gargantext.Database.User
36 - Gargantext.Ngrams
37 - Gargantext.Ngrams.Analysis
38 - Gargantext.Ngrams.TFICF
39 - Gargantext.Ngrams.Letters
40 - Gargantext.Ngrams.CoreNLP
41 - Gargantext.Ngrams.Parser
42 - Gargantext.Ngrams.Lang.En
43 - Gargantext.Ngrams.Stem.En
44 - Gargantext.Ngrams.Lang.Fr
45 - Gargantext.Ngrams.Metrics
46 - Gargantext.Ngrams.TextMining
47 - Gargantext.Ngrams.Occurrences
48 - Gargantext.Parsers
49 - Gargantext.Parsers.WOS
50 - Gargantext.Parsers.Date
51 - Gargantext.Prelude
52 - Gargantext.API
53 - Gargantext.API.Auth
54 - Gargantext.Types
55 - Gargantext.Types.Main
56 - Gargantext.Types.Node
57 - Gargantext.Utils.DateUtils
58 - Gargantext.Utils.Prefix
59 dependencies:
60 - QuickCheck
61 - aeson
62 - aeson-lens
63 - aeson-pretty
64 - async
65 - attoparsec
66 - base >=4.7 && <5
67 - base16-bytestring
68 - bytestring
69 - case-insensitive
70 - conduit
71 - conduit-extra
72 - containers
73 - contravariant
74 - data-time-segment
75 - directory
76 - duckling
77 - filepath
78 - fclabels
79 - fast-logger
80 # - haskell-gi-base
81 - http-client
82 - http-client-tls
83 - http-conduit
84 - http-api-data
85 - http-types
86 - hxt
87 - hlcm
88 - ini
89 - jose-jwt
90 - lens
91 - logging-effect
92 - monad-logger
93 - mtl
94 - natural-transformation
95 - opaleye
96 - parsec
97 - path
98 - path-io
99 - postgresql-simple
100 - pretty
101 - product-profunctors
102 - profunctors
103 - protolude
104 - pureMD5
105 - regex-compat
106 - resourcet
107 - safe
108 - semigroups
109 - servant
110 - servant-auth
111 - servant-client
112 - servant-job
113 - servant-mock
114 - servant-multipart
115 - servant-server
116 - servant-swagger
117 - servant-swagger-ui
118 - servant-static-th
119 - split
120 - stemmer
121 - string-conversions
122 - swagger2
123 - tagsoup
124 - text-metrics
125 - time
126 - time-locale-compat
127 - timezone-series
128 - transformers
129 - transformers-base
130 - unordered-containers
131 - uuid
132 - vector
133 - wai
134 - wai-cors
135 - wai-extra
136 - warp
137 - yaml
138 - zip
139 - zlib
140 # - utc
141
142 executable:
143 main: Main.hs
144 source-dirs: app
145 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
146 dependencies:
147 - base
148 - gargantext
149 - ini
150 - optparse-generic
151 - unordered-containers
152
153 tests:
154 garg-test:
155 main: Main.hs
156 source-dirs: src-test
157 default-extensions:
158 ghc-options:
159 - -threaded
160 - -rtsopts
161 - -with-rtsopts=-N
162 dependencies:
163 - base
164 - gargantext
165 - hspec
166 - QuickCheck
167 - quickcheck-instances
168 - time
169 - parsec
170 - duckling
171 - text
172 garg-doctest:
173 main: Main.hs
174 source-dirs: src-doctest
175 ghc-options:
176 - -Werror
177 - -threaded
178 - -rtsopts
179 - -with-rtsopts=-N
180 dependencies:
181 - doctest
182 - Glob
183 - QuickCheck
184 - base
185 - gargantext