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