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