]> 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.NodeNgram
33 - Gargantext.Database.NodeNgramNgram
34 - Gargantext.Database.NodeNode
35 - Gargantext.Database.NodeNodeNgram
36 - Gargantext.Database.Private
37 - Gargantext.Database.User
38 - Gargantext.Ngrams
39 - Gargantext.Ngrams.Count
40 - Gargantext.Ngrams.CoreNLP
41 - Gargantext.Ngrams.Parser
42 - Gargantext.Ngrams.Lang.En
43 - Gargantext.Ngrams.Lang.Fr
44 - Gargantext.Ngrams.Metrics
45 - Gargantext.Ngrams.TextMining
46 - Gargantext.Ngrams.Occurrences
47 - Gargantext.Parsers
48 - Gargantext.Parsers.WOS
49 - Gargantext.Parsers.Date
50 - Gargantext.Prelude
51 - Gargantext.RCT
52 - Gargantext.API
53 - Gargantext.API.Auth
54 - Gargantext.Types
55 - Gargantext.Types.Main
56 - Gargantext.Types.Node
57 - Gargantext.Utils.DateUtils
58 - Gargantext.Utils.Prefix
59 dependencies:
60 - base >=4.7 && <5
61 - aeson
62 - aeson-lens
63 - attoparsec
64 - async
65 - base16-bytestring
66 - bytestring
67 - case-insensitive
68 - containers
69 - contravariant
70 - conduit
71 - conduit-extra
72 - directory
73 - duckling
74 - filepath
75 - http-conduit
76 - hxt
77 - ini
78 - lens
79 - logging-effect
80 - opaleye
81 - path
82 - parsec
83 - postgresql-simple
84 - pretty
85 - product-profunctors
86 - profunctors
87 - protolude
88 - pureMD5
89 - regex-compat
90 - safe
91 - semigroups
92 - servant
93 - servant-client
94 - servant-multipart
95 - servant-server
96 - servant-auth
97 - split
98 - tagsoup
99 - text-metrics
100 # - utc
101 - time
102 - timezone-series
103 - time-locale-compat
104 - transformers
105 - unordered-containers
106 - uuid
107 - vector
108 - wai
109 - warp
110 - yaml
111 - zlib
112 - zip
113 - path-io
114
115 executable:
116 main: Main.hs
117 source-dirs: app
118 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
119 dependencies:
120 - gargantext
121 - ini
122 - base
123 - unordered-containers
124
125 tests:
126 garg-test:
127 main: Main.hs
128 source-dirs: src-test
129 ghc-options:
130 - -threaded
131 - -rtsopts
132 - -with-rtsopts=-N
133 dependencies:
134 - base
135 - gargantext
136 - hspec
137 - QuickCheck
138 - quickcheck-instances
139 - time
140 - parsec
141 - duckling
142 - text
143 garg-doctest:
144 main: Main.hs
145 source-dirs: src-doctest
146 ghc-options:
147 - -Werror
148 - -threaded
149 - -rtsopts
150 - -with-rtsopts=-N
151 dependencies:
152 - doctest
153 - Glob
154 - QuickCheck
155 - base
156 - gargantext