]> Git — Sourcephile - gargantext.git/blob - package.yaml
[APP] command line options added.
[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 - optparse-generic
134
135 tests:
136 garg-test:
137 main: Main.hs
138 source-dirs: src-test
139 ghc-options:
140 - -threaded
141 - -rtsopts
142 - -with-rtsopts=-N
143 dependencies:
144 - base
145 - gargantext
146 - hspec
147 - QuickCheck
148 - quickcheck-instances
149 - time
150 - parsec
151 - duckling
152 - text
153 garg-doctest:
154 main: Main.hs
155 source-dirs: src-doctest
156 ghc-options:
157 - -Werror
158 - -threaded
159 - -rtsopts
160 - -with-rtsopts=-N
161 dependencies:
162 - doctest
163 - Glob
164 - QuickCheck
165 - base
166 - gargantext