]> Git — Sourcephile - gargantext.git/blob - package.yaml
[MOCK] More credible count.
[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 - async
65 - attoparsec
66 - base >=4.7 && <5
67 - base16-bytestring
68 - bytestring
69 - case-insensitive
70 - conduit
71 - conduit-extra
72 - containers
73 - contravariant
74 - directory
75 - duckling
76 - filepath
77 - http-conduit
78 - ini
79 - lens
80 - logging-effect
81 - opaleye
82 - parsec
83 - path
84 - path-io
85 - postgresql-simple
86 - pretty
87 - product-profunctors
88 - profunctors
89 - protolude
90 - pureMD5
91 - regex-compat
92 - safe
93 - semigroups
94 - servant
95 - servant-auth
96 - servant-client
97 - servant-mock
98 - servant-multipart
99 - servant-server
100 - split
101 - tagsoup
102 - text-metrics
103 - time
104 - time-locale-compat
105 - timezone-series
106 - transformers
107 - unordered-containers
108 - uuid
109 - vector
110 - wai
111 - warp
112 - yaml
113 - zip
114 - zlib
115 # - utc
116
117 executable:
118 main: Main.hs
119 source-dirs: app
120 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
121 dependencies:
122 - gargantext
123 - ini
124 - base
125 - unordered-containers
126
127 tests:
128 garg-test:
129 main: Main.hs
130 source-dirs: src-test
131 ghc-options:
132 - -threaded
133 - -rtsopts
134 - -with-rtsopts=-N
135 dependencies:
136 - base
137 - gargantext
138 - hspec
139 - QuickCheck
140 garg-doctest:
141 main: Main.hs
142 source-dirs: src-doctest
143 ghc-options:
144 - -Werror
145 - -threaded
146 - -rtsopts
147 - -with-rtsopts=-N
148 dependencies:
149 - doctest
150 - Glob
151 - QuickCheck
152 - base
153 - gargantext