]> Git — Sourcephile - gargantext.git/blob - package.yaml
[FEAT] CSV ngrams extraction, engine and search.
[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 ghc-options:
19 - -Wincomplete-uni-patterns
20 - -Wincomplete-record-updates
21 - -Werror
22 exposed-modules:
23 - Gargantext
24 - Gargantext.Prelude
25 - Gargantext.Core
26 - Gargantext.Core.Utils
27 - Gargantext.Core.Types
28 - Gargantext.Core.Types.Node
29 - Gargantext.Text
30 - Gargantext.Text.Metrics
31 - Gargantext.Text.Metrics.Occurrences
32 - Gargantext.Text.Metrics.FrequentItemSet
33 - Gargantext.Text.Ngrams.PosTagging.CoreNLP
34 - Gargantext.Text.Ngrams.PosTagging.Parser
35 - Gargantext.Text.Ngrams.Token.Text
36 - Gargantext.Text.Parsers.CSV
37 - Gargantext.Text.Parsers.Date
38 - Gargantext.Database
39 - Gargantext.API
40 dependencies:
41 - QuickCheck
42 - aeson
43 - aeson-lens
44 - aeson-pretty
45 - async
46 - attoparsec
47 - base >=4.7 && <5
48 - base16-bytestring
49 - bytestring
50 - case-insensitive
51 - cassava
52 - conduit
53 - conduit-extra
54 - containers
55 - contravariant
56 - data-time-segment
57 - directory
58 - duckling
59 - exceptions
60 - filepath
61 - fullstop
62 - fclabels
63 - fast-logger
64 - full-text-search
65 - http-client
66 - http-client-tls
67 - http-conduit
68 - http-api-data
69 - http-types
70 - hxt
71 - hlcm
72 - ini
73 - jose-jwt
74 - lens
75 - logging-effect
76 - monad-logger
77 - mtl
78 - natural-transformation
79 - opaleye
80 - parsec
81 - path
82 - path-io
83 - postgresql-simple
84 - pretty
85 - product-profunctors
86 - profunctors
87 - protolude
88 - pureMD5
89 - regex-compat
90 - resourcet
91 - safe
92 - semigroups
93 - servant
94 - servant-auth
95 - servant-client
96 - servant-job
97 - servant-mock
98 - servant-multipart
99 - servant-server
100 - servant-swagger
101 - servant-swagger-ui
102 - servant-static-th
103 - split
104 - stemmer
105 - string-conversions
106 - swagger2
107 - tagsoup
108 - text-metrics
109 - time
110 - time-locale-compat
111 - timezone-series
112 - transformers
113 - transformers-base
114 - unordered-containers
115 - uuid
116 - vector
117 - wai
118 - wai-cors
119 - wai-extra
120 - warp
121 - yaml
122 - zip
123 - zlib
124 # - utc
125
126 executable:
127 main: Main.hs
128 source-dirs: app
129 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
130 dependencies:
131 - base
132 - gargantext
133 - ini
134 - optparse-generic
135 - unordered-containers
136
137 tests:
138 garg-test:
139 main: Main.hs
140 source-dirs: src-test
141 ghc-options:
142 - -threaded
143 - -rtsopts
144 - -with-rtsopts=-N
145 dependencies:
146 - base
147 - gargantext
148 - hspec
149 - QuickCheck
150 - quickcheck-instances
151 - time
152 - parsec
153 - duckling
154 - text
155 garg-doctest:
156 main: Main.hs
157 source-dirs: src-doctest
158 ghc-options:
159 - -Werror
160 - -threaded
161 - -rtsopts
162 - -with-rtsopts=-N
163 dependencies:
164 - doctest
165 - Glob
166 - QuickCheck
167 - base
168 - gargantext