]> Git — Sourcephile - gargantext.git/blob - package.yaml
[FIX] Copyrights.
[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.NodeNgram
33 - Gargantext.Database.NodeNgramNgram
34 - Gargantext.Database.NodeNode
35 - Gargantext.Database.NodeNodeNgram
36 - Gargantext.Database.Private
37 - Gargantext.Database.User
38 - Gargantext.Ngrams
39 - Gargantext.Ngrams.Count
40 - Gargantext.Ngrams.CoreNLP
41 - Gargantext.Ngrams.Parser
42 - Gargantext.Ngrams.Lang.En
43 - Gargantext.Ngrams.Lang.Fr
44 - Gargantext.Ngrams.Metrics
45 - Gargantext.Ngrams.TextMining
46 - Gargantext.Ngrams.Occurrences
47 - Gargantext.Parsers
48 - Gargantext.Parsers.WOS
49 - Gargantext.Parsers.Date
50 - Gargantext.Prelude
51 - Gargantext.RCT
52 - Gargantext.API
53 - Gargantext.API.Auth
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 - servant-auth
96 - split
97 - tagsoup
98 - text-metrics
99 # - utc
100 - time
101 - timezone-series
102 - time-locale-compat
103 - transformers
104 - unordered-containers
105 - uuid
106 - vector
107 - wai
108 - warp
109 - yaml
110 - zlib
111 - zip
112 - path-io
113
114 executable:
115 main: Main.hs
116 source-dirs: app
117 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
118 dependencies:
119 - gargantext
120 - ini
121 - base
122 - unordered-containers
123
124 tests:
125 garg-test:
126 main: Main.hs
127 source-dirs: src-test
128 ghc-options:
129 - -threaded
130 - -rtsopts
131 - -with-rtsopts=-N
132 dependencies:
133 - base
134 - gargantext
135 - hspec
136 - QuickCheck
137 garg-doctest:
138 main: Main.hs
139 source-dirs: src-doctest
140 ghc-options:
141 - -Werror
142 - -threaded
143 - -rtsopts
144 - -with-rtsopts=-N
145 dependencies:
146 - doctest
147 - Glob
148 - QuickCheck
149 - base
150 - gargantext