-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathepo-download.cabal
33 lines (32 loc) · 1.14 KB
/
epo-download.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: epo-download
version: 0.1.0.0
synopsis: Download PDFs of patent documents using EPO OPS API
license: AGPL-3
license-file: LICENSE
author: Martin Galese
maintainer: [email protected]
copyright: 2017 Martin Galese
category: Patent, API, Parsing
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable epo-download
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, patent-api
, protolude >= 0.1.6 && < 0.2
, options
, string-conversions
, http-types
, http-client
, http-client-tls
, text
, ini
, directory
, filepath >= 1.4
, csv
, lens >= 4.15
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude