]> Git — Sourcephile - gargantext.git/blob - package.yaml
Merge branch 'master' into fromRFC3339
[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 default-extensions:
19 - NoImplicitPrelude
20 ghc-options:
21 - -Wincomplete-uni-patterns
22 - -Wincomplete-record-updates
23 - -Werror
24 exposed-modules:
25 - Gargantext
26 - Gargantext.Analysis
27 - Gargantext.DSL
28 - Gargantext.Database
29 - Gargantext.Database.Instances
30 - Gargantext.Database.Ngram
31 - Gargantext.Database.Node
32 - Gargantext.Database.Facet
33 - Gargantext.Database.NodeNgram
34 - Gargantext.Database.NodeNgramNgram
35 - Gargantext.Database.NodeNode
36 - Gargantext.Database.NodeNodeNgram
37 - Gargantext.Database.Utils
38 - Gargantext.Database.User
39 - Gargantext.Ngrams
40 - Gargantext.Ngrams.Count
41 - Gargantext.Ngrams.CoreNLP
42 - Gargantext.Ngrams.Parser
43 - Gargantext.Ngrams.Lang.En
44 - Gargantext.Ngrams.Lang.Fr
45 - Gargantext.Ngrams.Metrics
46 - Gargantext.Ngrams.TextMining
47 - Gargantext.Ngrams.Occurrences
48 - Gargantext.Parsers
49 - Gargantext.Parsers.WOS
50 - Gargantext.Parsers.Date
51 - Gargantext.Prelude
52 - Gargantext.RCT
53 - Gargantext.API
54 - Gargantext.API.Auth
55 - Gargantext.Types
56 - Gargantext.Types.Main
57 - Gargantext.Types.Node
58 - Gargantext.Utils.DateUtils
59 - Gargantext.Utils.Prefix
60 dependencies:
61 - QuickCheck
62 - aeson
63 - aeson-lens
64 - aeson-pretty
65 - async
66 - attoparsec
67 - base >=4.7 && <5
68 - base16-bytestring
69 - bytestring
70 - case-insensitive
71 - conduit
72 - conduit-extra
73 - containers
74 - contravariant
75 - data-time-segment
76 - directory
77 - duckling
78 - filepath
79 - http-conduit
80 - hxt
81 - ini
82 - lens
83 - logging-effect
84 - opaleye
85 - parsec
86 - path
87 - path-io
88 - postgresql-simple
89 - pretty
90 - product-profunctors
91 - profunctors
92 - protolude
93 - pureMD5
94 - regex-compat
95 - safe
96 - semigroups
97 - servant
98 - servant-auth
99 - servant-client
100 - servant-mock
101 - servant-multipart
102 - servant-server
103 - servant-swagger
104 - servant-swagger-ui
105 - servant-static-th
106 - split
107 - swagger2
108 - tagsoup
109 - text-metrics
110 - time
111 - time-locale-compat
112 - timezone-series
113 - transformers
114 - unordered-containers
115 - uuid
116 - vector
117 - wai
118 - warp
119 - yaml
120 - zip
121 - zlib
122 # - utc
123
124 executable:
125 main: Main.hs
126 source-dirs: app
127 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
128 dependencies:
129 - gargantext
130 - ini
131 - base
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