-
Notifications
You must be signed in to change notification settings - Fork 1
/
kawhi.cabal
66 lines (63 loc) · 1.43 KB
/
kawhi.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
name: kawhi
version: 0.3.1
synopsis: stats.NBA.com library
description: Functions and types for interacting with stats.NBA.com
homepage: https://github.com/thunky-monk/kawhi
license: MIT
license-file: LICENSE
author: Aaron Taylor
maintainer: aaron@hamsterdam.co
category: API
build-type: Simple
cabal-version: >=1.10
extra-source-files:
README.md
guide.md
stack.yaml
changelog.md
library
hs-source-dirs: library
exposed-modules:
Control.Monad.Http
Data.NBA.Stats
other-modules:
build-depends:
base >= 4.8 && < 5,
aeson >= 1.0,
bytestring >= 0.10,
exceptions >= 0.8,
http-conduit >= 2.2,
http-client >= 0.5.1,
http-types >= 0.9,
mtl >= 2.2,
safe >= 0.3,
scientific >= 0.3,
text >= 1.2
ghc-options: -Wall
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
other-modules: Data.NBA.Stats.Tests
build-depends:
base >= 4.8 && < 5,
kawhi >= 0.0,
aeson >= 1.0,
bytestring >= 0.10,
exceptions >= 0.8,
http-client >= 0.4.30,
http-types >= 0.9,
mtl >= 2.2,
scientific >= 0.3,
smallcheck >= 1.1,
tasty >= 0.11,
tasty-hunit >= 0.9,
tasty-quickcheck >= 0.8,
tasty-smallcheck >= 0.8,
text >= 1.2
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/thunky-monk/kawhi