]> Git — Sourcephile - gargantext.git/blob - package.yaml
[Global Structure] commenting ngrams function to database (focusing on main business...
[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 ghc-options:
19 - -Wincomplete-uni-patterns
20 - -Wincomplete-record-updates
21 - -Werror
22 exposed-modules:
23 - Gargantext
24 - Gargantext.Prelude
25 - Gargantext.Core
26 - Gargantext.Core.Utils
27 - Gargantext.Core.Types
28 - Gargantext.Core.Types.Node
29 - Gargantext.Text
30 - Gargantext.Text.Metrics
31 - Gargantext.Text.Metrics.Occurrences
32 - Gargantext.Text.Metrics.FrequentItemSet
33 - Gargantext.Text.Ngrams.PosTagging.CoreNLP
34 - Gargantext.Text.Ngrams.PosTagging.Parser
35 - Gargantext.Text.Ngrams.Token.Text
36 - Gargantext.Text.Parsers.CSV
37 - Gargantext.Text.Parsers.Date
38 - Gargantext.API
39 dependencies:
40 - QuickCheck
41 - aeson
42 - aeson-lens
43 - aeson-pretty
44 - async
45 - attoparsec
46 - base >=4.7 && <5
47 - base16-bytestring
48 - bytestring
49 - case-insensitive
50 - cassava
51 - conduit
52 - conduit-extra
53 - containers
54 - contravariant
55 - data-time-segment
56 - directory
57 - duckling
58 - exceptions
59 - filepath
60 - fullstop
61 - fclabels
62 - fast-logger
63 - full-text-search
64 - http-client
65 - http-client-tls
66 - http-conduit
67 - http-api-data
68 - http-types
69 - hxt
70 - hlcm
71 - ini
72 - jose-jwt
73 - lens
74 - logging-effect
75 - monad-logger
76 - mtl
77 - natural-transformation
78 - opaleye
79 - parsec
80 - path
81 - path-io
82 - postgresql-simple
83 - pretty
84 - product-profunctors
85 - profunctors
86 - protolude
87 - pureMD5
88 - regex-compat
89 - resourcet
90 - safe
91 - semigroups
92 - servant
93 - servant-auth
94 - servant-client
95 - servant-job
96 - servant-mock
97 - servant-multipart
98 - servant-server
99 - servant-swagger
100 - servant-swagger-ui
101 - servant-static-th
102 - split
103 - stemmer
104 - string-conversions
105 - swagger2
106 - tagsoup
107 - text-metrics
108 - time
109 - time-locale-compat
110 - timezone-series
111 - transformers
112 - transformers-base
113 - unordered-containers
114 - uuid
115 - vector
116 - wai
117 - wai-cors
118 - wai-extra
119 - warp
120 - yaml
121 - zip
122 - zlib
123 # - utc
124
125 executable:
126 main: Main.hs
127 source-dirs: app
128 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
129 dependencies:
130 - base
131 - gargantext
132 - ini
133 - optparse-generic
134 - unordered-containers
135
136 tests:
137 garg-test:
138 main: Main.hs
139 source-dirs: src-test
140 ghc-options:
141 - -threaded
142 - -rtsopts
143 - -with-rtsopts=-N
144 dependencies:
145 - base
146 - gargantext
147 - hspec
148 - QuickCheck
149 - quickcheck-instances
150 - time
151 - parsec
152 - duckling
153 - text
154 garg-doctest:
155 main: Main.hs
156 source-dirs: src-doctest
157 ghc-options:
158 - -Werror
159 - -threaded
160 - -rtsopts
161 - -with-rtsopts=-N
162 dependencies:
163 - doctest
164 - Glob
165 - QuickCheck
166 - base
167 - gargantext