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