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