]> Git — Sourcephile - gargantext.git/blob - package.yaml
[CONFIG] Start server and DB connexion with Ini file (added to the repo for tests).
[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 - ini
77 - lens
78 - logging-effect
79 - opaleye
80 - path
81 - parsec
82 - postgresql-simple
83 - pretty
84 - product-profunctors
85 - profunctors
86 - protolude
87 - pureMD5
88 - regex-compat
89 - safe
90 - semigroups
91 - servant
92 - servant-client
93 - servant-multipart
94 - servant-server
95 - split
96 - tagsoup
97 - text-metrics
98 # - utc
99 - time
100 - timezone-series
101 - time-locale-compat
102 - transformers
103 - unordered-containers
104 - uuid
105 - vector
106 - wai
107 - warp
108 - yaml
109 - zlib
110 - zip
111 - path-io
112
113 executable:
114 main: Main.hs
115 source-dirs: app
116 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
117 dependencies:
118 - gargantext
119 - ini
120 - base
121 - unordered-containers
122
123 tests:
124 garg-test:
125 main: Main.hs
126 source-dirs: src-test
127 ghc-options:
128 - -threaded
129 - -rtsopts
130 - -with-rtsopts=-N
131 dependencies:
132 - base
133 - gargantext
134 - hspec
135 - QuickCheck
136 garg-doctest:
137 main: Main.hs
138 source-dirs: src-doctest
139 ghc-options:
140 - -Werror
141 - -threaded
142 - -rtsopts
143 - -with-rtsopts=-N
144 dependencies:
145 - doctest
146 - Glob
147 - QuickCheck
148 - base
149 - gargantext