]> Git — Sourcephile - gargantext.git/blob - package.yaml
[FIS] Frequent Item Set DSL.
[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.DSL
27 - Gargantext.Database
28 - Gargantext.Database.Instances
29 - Gargantext.Database.Ngram
30 - Gargantext.Database.Node
31 - Gargantext.Database.Facet
32 - Gargantext.Database.NodeNgram
33 - Gargantext.Database.NodeNgramNgram
34 - Gargantext.Database.NodeNode
35 - Gargantext.Database.NodeNodeNgram
36 - Gargantext.Database.Utils
37 - Gargantext.Database.User
38 - Gargantext.Ngrams
39 - Gargantext.Ngrams.Analysis
40 - Gargantext.Ngrams.TFICF
41 - Gargantext.Ngrams.Letters
42 - Gargantext.Ngrams.CoreNLP
43 - Gargantext.Ngrams.Parser
44 - Gargantext.Ngrams.Lang.En
45 - Gargantext.Ngrams.Lang.Fr
46 - Gargantext.Ngrams.Metrics
47 - Gargantext.Ngrams.TextMining
48 - Gargantext.Ngrams.Occurrences
49 - Gargantext.Parsers
50 - Gargantext.Parsers.WOS
51 - Gargantext.Parsers.Date
52 - Gargantext.Prelude
53 - Gargantext.RCT
54 - Gargantext.API
55 - Gargantext.API.Auth
56 - Gargantext.Types
57 - Gargantext.Types.Main
58 - Gargantext.Types.Node
59 - Gargantext.Utils.DateUtils
60 - Gargantext.Utils.Prefix
61 dependencies:
62 - QuickCheck
63 - aeson
64 - aeson-lens
65 - aeson-pretty
66 - async
67 - attoparsec
68 - base >=4.7 && <5
69 - base16-bytestring
70 - bytestring
71 - case-insensitive
72 - conduit
73 - conduit-extra
74 - containers
75 - contravariant
76 - data-time-segment
77 - directory
78 - duckling
79 - filepath
80 - fclabels
81 - fast-logger
82 # - haskell-gi-base
83 - http-conduit
84 - http-api-data
85 - http-types
86 - hxt
87 - hlcm
88 - ini
89 - jose-jwt
90 - lens
91 - logging-effect
92 - monad-logger
93 - mtl
94 - natural-transformation
95 - opaleye
96 - parsec
97 - path
98 - path-io
99 - postgresql-simple
100 - pretty
101 - product-profunctors
102 - profunctors
103 - protolude
104 - pureMD5
105 - regex-compat
106 - resourcet
107 - safe
108 - semigroups
109 - servant
110 - servant-auth
111 - servant-client
112 - servant-mock
113 - servant-multipart
114 - servant-server
115 - servant-swagger
116 - servant-swagger-ui
117 - servant-static-th
118 - split
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