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