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