-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapripsql.cabal
82 lines (76 loc) · 2.32 KB
/
apripsql.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
cabal-version: 2.4
name: apripsql
version: 0.1.0.0
synopsis: PostgreSQL database for Apribot
-- A longer description of the package.
-- description:
homepage: https://github.com/penelopeysm/apripsql
-- A URL where users can report bugs.
-- bug-reports:
license: MIT
license-file: LICENSE
author: Penelope Yong
maintainer: [email protected]
category: Database
extra-source-files: CHANGELOG.md
common common-deps
build-depends:
base ^>= 4.17.1.0,
cassava,
containers,
directory,
filepath,
mtl,
postgresql-simple,
text,
transformers,
unordered-containers
default-extensions:
OverloadedStrings,
ScopedTypeVariables,
LambdaCase,
TypeApplications
default-language:
Haskell2010
library
import: common-deps
exposed-modules: Apripsql.Queries,
Setup.Ability,
Setup.Alias,
Setup.Database,
Setup.EggGroup,
Setup.Evolution,
Setup.Game,
Setup.GenderRatio,
Setup.LearnMethod,
Setup.Learnset,
Setup.Legality,
Setup.Move,
Setup.MoveCategory,
Setup.Nature,
Setup.Pokemon,
Setup.RawEvolution,
Setup.RawLearnset,
Setup.RawMove,
Setup.RawPokemon,
Setup.SupplementaryLearnset,
Setup.Type,
Utils
build-depends: scalpel,
deepseq,
bytestring,
time,
vector
hs-source-dirs: src
executable apripsql
import: common-deps
build-depends: apripsql, optparse-applicative
hs-source-dirs: app
main-is: Main.hs
test-suite apripsql-test
import: common-deps
build-depends: apripsql, tasty, tasty-hunit
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Issues