]> Git — Sourcephile - gargantext.git/blob - package.yaml
[FIX/SERV] roots with type id.
[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: Alexandre Delanoë
7 maintainer: team@gargantext.org
8 copyright:
9 - ! 'Copyright: (c) 2016'
10 - 2018 CNRS Alexandre Delanoë
11 license: BSD3
12 homepage: https://gargantext.org
13 ghc-options: -Wall
14 dependencies:
15 - extra
16 - text
17 library:
18 source-dirs: src
19 ghc-options:
20 - -Wincomplete-uni-patterns
21 - -Wincomplete-record-updates
22 - -Werror
23 exposed-modules:
24 - Data.Gargantext
25 - Data.Gargantext.Analysis
26 - Data.Gargantext.DSL
27 - Data.Gargantext.Database
28 - Data.Gargantext.Database.Instances
29 - Data.Gargantext.Database.Ngram
30 - Data.Gargantext.Database.Node
31 - Data.Gargantext.Database.NodeNgram
32 - Data.Gargantext.Database.NodeNgramNgram
33 - Data.Gargantext.Database.NodeNode
34 - Data.Gargantext.Database.NodeNodeNgram
35 - Data.Gargantext.Database.Private
36 - Data.Gargantext.Database.User
37 - Data.Gargantext.Ngrams
38 - Data.Gargantext.Ngrams.Count
39 - Data.Gargantext.Ngrams.CoreNLP
40 - Data.Gargantext.Ngrams.Parser
41 - Data.Gargantext.Ngrams.Lang.En
42 - Data.Gargantext.Ngrams.Lang.Fr
43 - Data.Gargantext.Ngrams.Metrics
44 - Data.Gargantext.Ngrams.TextMining
45 - Data.Gargantext.Ngrams.Occurrences
46 - Data.Gargantext.Parsers
47 - Data.Gargantext.Parsers.WOS
48 - Data.Gargantext.Parsers.Date
49 - Data.Gargantext.Prelude
50 - Data.Gargantext.RCT
51 - Data.Gargantext.Server
52 - Data.Gargantext.Types
53 - Data.Gargantext.Types.Main
54 - Data.Gargantext.Types.Node
55 - Data.Gargantext.Utils.DateUtils
56 - Data.Gargantext.Utils.Prefix
57 dependencies:
58 - base >=4.7 && <5
59 - aeson
60 - aeson-lens
61 - attoparsec
62 - async
63 - base16-bytestring
64 - bytestring
65 - case-insensitive
66 - containers
67 - contravariant
68 - conduit
69 - conduit-extra
70 - directory
71 - duckling
72 - filepath
73 - http-conduit
74 - lens
75 - logging-effect
76 - opaleye
77 - path
78 - parsec
79 - postgresql-simple
80 - pretty
81 - product-profunctors
82 - profunctors
83 - protolude
84 - pureMD5
85 - regex-compat
86 - safe
87 - semigroups
88 - servant
89 - servant-client
90 - servant-multipart
91 - servant-server
92 - split
93 - tagsoup
94 - text-metrics
95 # - utc
96 - time
97 - timezone-series
98 - time-locale-compat
99 - transformers
100 - unordered-containers
101 - uuid
102 - vector
103 - wai
104 - warp
105 - yaml
106 - zlib
107 - zip
108 - path-io
109 tests:
110 garg-test:
111 main: Main.hs
112 source-dirs: src-test
113 ghc-options:
114 - -threaded
115 - -rtsopts
116 - -with-rtsopts=-N
117 dependencies:
118 - base
119 - gargantext
120 - hspec
121 - QuickCheck
122 garg-doctest:
123 main: Main.hs
124 source-dirs: src-doctest
125 ghc-options:
126 - -Werror
127 - -threaded
128 - -rtsopts
129 - -with-rtsopts=-N
130 dependencies:
131 - doctest
132 - Glob
133 - QuickCheck
134 - base
135 - gargantext