]> Git — Sourcephile - gargantext.git/blob - package.yaml
[FIS][FIX] Frequent Item Set and fix ngrams extraction test.
[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.DSL
27 - Gargantext.Database
28 - Gargantext.Database.Instances
29 - Gargantext.Database.Ngram
30 - Gargantext.Database.Node
31 - Gargantext.Database.Facet
32 - Gargantext.Database.NodeNgram
33 - Gargantext.Database.NodeNgramNgram
34 - Gargantext.Database.NodeNode
35 - Gargantext.Database.NodeNodeNgram
36 - Gargantext.Database.Utils
37 - Gargantext.Database.User
38 - Gargantext.Ngrams
39 - Gargantext.Ngrams.Analysis
40 - Gargantext.Ngrams.TFICF
41 - Gargantext.Ngrams.Letters
42 - Gargantext.Ngrams.CoreNLP
43 - Gargantext.Ngrams.Parser
44 - Gargantext.Ngrams.Lang.En
45 - Gargantext.Ngrams.Lang.Fr
46 - Gargantext.Ngrams.Metrics
47 - Gargantext.Ngrams.TextMining
48 - Gargantext.Ngrams.Occurrences
49 - Gargantext.Parsers
50 - Gargantext.Parsers.WOS
51 - Gargantext.Parsers.Date
52 - Gargantext.Prelude
53 - Gargantext.RCT
54 - Gargantext.API
55 - Gargantext.API.Auth
56 - Gargantext.Types
57 - Gargantext.Types.Main
58 - Gargantext.Types.Node
59 - Gargantext.Utils.DateUtils
60 - Gargantext.Utils.Prefix
61 dependencies:
62 - QuickCheck
63 - aeson
64 - aeson-lens
65 - aeson-pretty
66 - async
67 - attoparsec
68 - base >=4.7 && <5
69 - base16-bytestring
70 - bytestring
71 - case-insensitive
72 - conduit
73 - conduit-extra
74 - containers
75 - contravariant
76 - data-time-segment
77 - directory
78 - duckling
79 - filepath
80 - fclabels
81 - fast-logger
82 # - haskell-gi-base
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-mock
113 - servant-multipart
114 - servant-server
115 - servant-swagger
116 - servant-swagger-ui
117 - servant-static-th
118 - split
119 - stemmer
120 - swagger2
121 - tagsoup
122 - text-metrics
123 - time
124 - time-locale-compat
125 - timezone-series
126 - transformers
127 - transformers-base
128 - unordered-containers
129 - uuid
130 - vector
131 - wai
132 - wai-cors
133 - wai-extra
134 - warp
135 - yaml
136 - zip
137 - zlib
138 # - utc
139
140 executable:
141 main: Main.hs
142 source-dirs: app
143 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
144 dependencies:
145 - base
146 - gargantext
147 - ini
148 - optparse-generic
149 - unordered-containers
150
151 tests:
152 garg-test:
153 main: Main.hs
154 source-dirs: src-test
155 default-extensions:
156 - NoImplicitPrelude
157 ghc-options:
158 - -threaded
159 - -rtsopts
160 - -with-rtsopts=-N
161 dependencies:
162 - base
163 - gargantext
164 - hspec
165 - QuickCheck
166 - quickcheck-instances
167 - time
168 - parsec
169 - duckling
170 - text
171 garg-doctest:
172 main: Main.hs
173 source-dirs: src-doctest
174 ghc-options:
175 - -Werror
176 - -threaded
177 - -rtsopts
178 - -with-rtsopts=-N
179 dependencies:
180 - doctest
181 - Glob
182 - QuickCheck
183 - base
184 - gargantext