-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbcnodata2db.cabal
47 lines (45 loc) · 1.51 KB
/
bcnodata2db.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
-- Initial bcnodata2db.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: bcnodata2db
version: 0.1.0.0
synopsis: Relational-ize data in http://opendata.bcn.cat
-- description:
license: GPL-3
license-file: LICENSE
author: Guillem Marpons
maintainer: gmarpons@gmail.com
-- copyright:
category: Database
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable bcnodata2db
main-is: BcnOData2Db.hs
other-modules: BcnOData.Persistent
other-extensions: GADTs
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, OverloadedStrings
, QuasiQuotes
, TemplateHaskell
, TypeFamilies
build-depends: base >=4.7 && <4.8
, bytestring
, containers
, exceptions
, http-conduit
, lens
, monad-control >= 0.3.3.0
, monad-logger >= 0.3.11.1
, network
, optparse-applicative
, persistent
, persistent-postgresql
, persistent-template
, text >=1.1 && <1.2
, time
, transformers >= 0.3.0.0
, xml-conduit
, xml-lens
-- hs-source-dirs:
default-language: Haskell2010