]> Git — Sourcephile - gargantext.git/blob - package.yaml
[FIX] Count improving type.
[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 - NoImplicitPrelude
20 ghc-options:
21 - -Wincomplete-uni-patterns
22 - -Wincomplete-record-updates
23 - -Werror
24 exposed-modules:
25 - Gargantext
26 - Gargantext.Database
27 - Gargantext.Database.Instances
28 - Gargantext.Database.Ngram
29 - Gargantext.Database.Node
30 - Gargantext.Database.Facet
31 - Gargantext.Database.NodeNgram
32 - Gargantext.Database.NodeNgramNgram
33 - Gargantext.Database.NodeNode
34 - Gargantext.Database.NodeNodeNgram
35 - Gargantext.Database.Utils
36 - Gargantext.Database.User
37 - Gargantext.Ngrams
38 - Gargantext.Ngrams.Analysis
39 - Gargantext.Ngrams.TFICF
40 - Gargantext.Ngrams.Letters
41 - Gargantext.Ngrams.CoreNLP
42 - Gargantext.Ngrams.Parser
43 - Gargantext.Ngrams.Lang.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-conduit
82 - http-api-data
83 - http-types
84 - hxt
85 - hlcm
86 - ini
87 - jose-jwt
88 - lens
89 - logging-effect
90 - monad-logger
91 - mtl
92 - natural-transformation
93 - opaleye
94 - parsec
95 - path
96 - path-io
97 - postgresql-simple
98 - pretty
99 - product-profunctors
100 - profunctors
101 - protolude
102 - pureMD5
103 - regex-compat
104 - resourcet
105 - safe
106 - semigroups
107 - servant
108 - servant-auth
109 - servant-client
110 - servant-mock
111 - servant-multipart
112 - servant-server
113 - servant-swagger
114 - servant-swagger-ui
115 - servant-static-th
116 - split
117 - stemmer
118 - swagger2
119 - tagsoup
120 - text-metrics
121 - time
122 - time-locale-compat
123 - timezone-series
124 - transformers
125 - transformers-base
126 - unordered-containers
127 - uuid
128 - vector
129 - wai
130 - wai-cors
131 - wai-extra
132 - warp
133 - yaml
134 - zip
135 - zlib
136 # - utc
137
138 executable:
139 main: Main.hs
140 source-dirs: app
141 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
142 dependencies:
143 - base
144 - gargantext
145 - ini
146 - optparse-generic
147 - unordered-containers
148
149 tests:
150 garg-test:
151 main: Main.hs
152 source-dirs: src-test
153 default-extensions:
154 - NoImplicitPrelude
155 ghc-options:
156 - -threaded
157 - -rtsopts
158 - -with-rtsopts=-N
159 dependencies:
160 - base
161 - gargantext
162 - hspec
163 - QuickCheck
164 - quickcheck-instances
165 - time
166 - parsec
167 - duckling
168 - text
169 garg-doctest:
170 main: Main.hs
171 source-dirs: src-doctest
172 ghc-options:
173 - -Werror
174 - -threaded
175 - -rtsopts
176 - -with-rtsopts=-N
177 dependencies:
178 - doctest
179 - Glob
180 - QuickCheck
181 - base
182 - gargantext