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