]> Git — Sourcephile - gargantext.git/blob - package.yaml
[DOCTEST] added.
[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: gargantext@iscpif.fr
8 copyright:
9 - ! 'Copyright: (c) 2016'
10 - 2017 CNRS Alexandre Delanoë
11 license: BSD3
12 homepage: http://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 - attoparsec
61 - async
62 - base16-bytestring
63 - bytestring
64 - case-insensitive
65 - containers
66 - contravariant
67 - conduit
68 - conduit-extra
69 - directory
70 - duckling
71 - filepath
72 - http-conduit
73 - lens
74 - logging-effect
75 - opaleye
76 - path
77 - parsec
78 - postgresql-simple
79 - pretty
80 - product-profunctors
81 - profunctors
82 - protolude
83 - pureMD5
84 - regex-compat
85 - semigroups
86 - servant
87 - servant-client
88 - servant-multipart
89 - servant-server
90 - split
91 - tagsoup
92 - text-metrics
93 - time
94 - timezone-series
95 - time-locale-compat
96 - transformers
97 - unordered-containers
98 - uuid
99 - vector
100 - wai
101 - warp
102 - yaml
103 - zlib
104 - zip
105 - path-io
106 tests:
107 garg-test:
108 main: Main.hs
109 source-dirs: src-test
110 ghc-options:
111 - -threaded
112 - -rtsopts
113 - -with-rtsopts=-N
114 dependencies:
115 - base
116 - gargantext
117 - hspec
118 - QuickCheck
119 garg-doctest:
120 main: Main.hs
121 source-dirs: src-doctest
122 ghc-options:
123 - -Werror
124 - -threaded
125 - -rtsopts
126 - -with-rtsopts=-N
127 dependencies:
128 - doctest
129 - Glob
130 - QuickCheck
131 - base
132 - gargantext