]> Git — Sourcephile - gargantext.git/blob - package.yaml
[Structure] Ngrams -> Text.
[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.Text
37 - Gargantext.Text.Analysis
38 - Gargantext.Text.TFICF
39 - Gargantext.Text.Letters
40 - Gargantext.Text.CoreNLP
41 - Gargantext.Text.Parser
42 - Gargantext.Text.Token.Text
43 - Gargantext.Text.Lang.En
44 - Gargantext.Text.Stem.En
45 - Gargantext.Text.Lang.Fr
46 - Gargantext.Text.Metrics
47 - Gargantext.Text.TextMining
48 - Gargantext.Text.Occurrences
49 - Gargantext.Text.Parsers
50 - Gargantext.Text.Parsers.WOS
51 - Gargantext.Text.Parsers.Date
52 - Gargantext.Prelude
53 - Gargantext.API
54 - Gargantext.API.Auth
55 - Gargantext.Types
56 - Gargantext.Types.Main
57 - Gargantext.Types.Node
58 - Gargantext.Utils.DateUtils
59 - Gargantext.Utils.Prefix
60 dependencies:
61 - QuickCheck
62 - aeson
63 - aeson-lens
64 - aeson-pretty
65 - async
66 - attoparsec
67 - base >=4.7 && <5
68 - base16-bytestring
69 - bytestring
70 - case-insensitive
71 - conduit
72 - conduit-extra
73 - containers
74 - contravariant
75 - data-time-segment
76 - directory
77 - duckling
78 - filepath
79 - fclabels
80 - fast-logger
81 # - haskell-gi-base
82 - http-conduit
83 - http-api-data
84 - http-types
85 - hxt
86 - hlcm
87 - ini
88 - jose-jwt
89 - lens
90 - logging-effect
91 - monad-logger
92 - mtl
93 - natural-transformation
94 - opaleye
95 - parsec
96 - path
97 - path-io
98 - postgresql-simple
99 - pretty
100 - product-profunctors
101 - profunctors
102 - protolude
103 - pureMD5
104 - regex-compat
105 - resourcet
106 - safe
107 - semigroups
108 - servant
109 - servant-auth
110 - servant-client
111 - servant-mock
112 - servant-multipart
113 - servant-server
114 - servant-swagger
115 - servant-swagger-ui
116 - servant-static-th
117 - split
118 - stemmer
119 - string-conversions
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 ghc-options:
157 - -threaded
158 - -rtsopts
159 - -with-rtsopts=-N
160 dependencies:
161 - base
162 - gargantext
163 - hspec
164 - QuickCheck
165 - quickcheck-instances
166 - time
167 - parsec
168 - duckling
169 - text
170 garg-doctest:
171 main: Main.hs
172 source-dirs: src-doctest
173 ghc-options:
174 - -Werror
175 - -threaded
176 - -rtsopts
177 - -with-rtsopts=-N
178 dependencies:
179 - doctest
180 - Glob
181 - QuickCheck
182 - base
183 - gargantext