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