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