]> Git — Sourcephile - gargantext.git/blob - package.yaml
[PRELUDE] no implicit prelude any more.
[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: Alexandre Delanoë
7 maintainer: team@gargantext.org
8 copyright:
9 - ! 'Copyright: (c) 2016'
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 - lens
77 - logging-effect
78 - opaleye
79 - path
80 - parsec
81 - postgresql-simple
82 - pretty
83 - product-profunctors
84 - profunctors
85 - protolude
86 - pureMD5
87 - regex-compat
88 - safe
89 - semigroups
90 - servant
91 - servant-client
92 - servant-multipart
93 - servant-server
94 - split
95 - tagsoup
96 - text-metrics
97 # - utc
98 - time
99 - timezone-series
100 - time-locale-compat
101 - transformers
102 - unordered-containers
103 - uuid
104 - vector
105 - wai
106 - warp
107 - yaml
108 - zlib
109 - zip
110 - path-io
111 tests:
112 garg-test:
113 main: Main.hs
114 source-dirs: src-test
115 ghc-options:
116 - -threaded
117 - -rtsopts
118 - -with-rtsopts=-N
119 dependencies:
120 - base
121 - gargantext
122 - hspec
123 - QuickCheck
124 garg-doctest:
125 main: Main.hs
126 source-dirs: src-doctest
127 ghc-options:
128 - -Werror
129 - -threaded
130 - -rtsopts
131 - -with-rtsopts=-N
132 dependencies:
133 - doctest
134 - Glob
135 - QuickCheck
136 - base
137 - gargantext