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