]> Git — Sourcephile - gargantext.git/blob - package.yaml
Need to derive Arbitrary for ParseError and Eq for ZonedTime
[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'
10 - 2018 CNRS Alexandre Delanoë
11 license: BSD3
12 homepage: https://gargantext.org
13 ghc-options: -Wall
14 dependencies:
15 - extra
16 - text
17 library:
18 source-dirs: src
19 default-extensions:
20 - NoImplicitPrelude
21 ghc-options:
22 - -Wincomplete-uni-patterns
23 - -Wincomplete-record-updates
24 - -Werror
25 exposed-modules:
26 - Gargantext
27 - Gargantext.Analysis
28 - Gargantext.DSL
29 - Gargantext.Database
30 - Gargantext.Database.Instances
31 - Gargantext.Database.Ngram
32 - Gargantext.Database.Node
33 - Gargantext.Database.NodeNgram
34 - Gargantext.Database.NodeNgramNgram
35 - Gargantext.Database.NodeNode
36 - Gargantext.Database.NodeNodeNgram
37 - Gargantext.Database.Private
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.Server
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 - split
97 - tagsoup
98 - text-metrics
99 # - utc
100 - time
101 - timezone-series
102 - time-locale-compat
103 - transformers
104 - unordered-containers
105 - uuid
106 - vector
107 - wai
108 - warp
109 - yaml
110 - zlib
111 - zip
112 - path-io
113
114 executable:
115 main: Main.hs
116 source-dirs: app
117 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
118 dependencies:
119 - gargantext
120 - ini
121 - base
122 - unordered-containers
123
124 tests:
125 garg-test:
126 main: Main.hs
127 source-dirs: src-test
128 ghc-options:
129 - -threaded
130 - -rtsopts
131 - -with-rtsopts=-N
132 dependencies:
133 - base
134 - gargantext
135 - hspec
136 - QuickCheck
137 - time
138 - parsec
139 - duckling
140 - text
141 garg-doctest:
142 main: Main.hs
143 source-dirs: src-doctest
144 ghc-options:
145 - -Werror
146 - -threaded
147 - -rtsopts
148 - -with-rtsopts=-N
149 dependencies:
150 - doctest
151 - Glob
152 - QuickCheck
153 - base
154 - gargantext