]> Git — Sourcephile - gargantext.git/blob - package.yaml
[FacetDoc] Adding Favorite Left Join and Ngrams count queries.
[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 - base >=4.7 && <5
62 - aeson
63 - aeson-lens
64 - attoparsec
65 - async
66 - base16-bytestring
67 - bytestring
68 - case-insensitive
69 - containers
70 - contravariant
71 - conduit
72 - conduit-extra
73 - directory
74 - duckling
75 - filepath
76 - http-conduit
77 - ini
78 - lens
79 - logging-effect
80 - opaleye
81 - path
82 - parsec
83 - postgresql-simple
84 - pretty
85 - product-profunctors
86 - profunctors
87 - protolude
88 - pureMD5
89 - regex-compat
90 - safe
91 - semigroups
92 - servant
93 - servant-client
94 - servant-multipart
95 - servant-server
96 - servant-auth
97 - split
98 - tagsoup
99 - text-metrics
100 # - utc
101 - time
102 - timezone-series
103 - time-locale-compat
104 - transformers
105 - unordered-containers
106 - uuid
107 - vector
108 - wai
109 - warp
110 - yaml
111 - zlib
112 - zip
113 - path-io
114
115 executable:
116 main: Main.hs
117 source-dirs: app
118 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
119 dependencies:
120 - gargantext
121 - ini
122 - base
123 - unordered-containers
124
125 tests:
126 garg-test:
127 main: Main.hs
128 source-dirs: src-test
129 ghc-options:
130 - -threaded
131 - -rtsopts
132 - -with-rtsopts=-N
133 dependencies:
134 - base
135 - gargantext
136 - hspec
137 - QuickCheck
138 garg-doctest:
139 main: Main.hs
140 source-dirs: src-doctest
141 ghc-options:
142 - -Werror
143 - -threaded
144 - -rtsopts
145 - -with-rtsopts=-N
146 dependencies:
147 - doctest
148 - Glob
149 - QuickCheck
150 - base
151 - gargantext