-
Notifications
You must be signed in to change notification settings - Fork 1
/
oeis2.cabal
67 lines (62 loc) · 1.59 KB
/
oeis2.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.36.0.
--
-- see: https://github.com/sol/hpack
name: oeis2
version: 1.0.9
synopsis: Interface for Online Encyclopedia of Integer Sequences (OEIS).
description: Release notes are here https://github.com/23prime/oeis2/releases
category: Math
homepage: https://github.com/23prime/oeis2#readme
bug-reports: https://github.com/23prime/oeis2/issues
author: Taisuke Hikawa
maintainer: 23.prime.37@gmail.com
copyright: 2019 Taisuke Hikawa
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/23prime/oeis2
library
exposed-modules:
Math.OEIS
Math.OEIS.Internal
Math.OEIS.Types
other-modules:
Paths_oeis2
hs-source-dirs:
src
build-depends:
aeson ==2.*
, base >=4.17 && <5
, containers >=0.5 && <0.8
, http-conduit >=2.2 && <3
, lens >=4.15 && <6
, lens-aeson >=1.2 && <2
, text ==2.*
, vector ==0.13.*
default-language: Haskell2010
test-suite oeis2-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_oeis2
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck
, aeson ==2.*
, base >=4.17 && <5
, containers >=0.5 && <0.8
, hspec
, http-conduit >=2.2 && <3
, lens >=4.15 && <6
, lens-aeson >=1.2 && <2
, oeis2
, text ==2.*
, vector ==0.13.*
default-language: Haskell2010