-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconway-numbers.cabal
51 lines (40 loc) · 1.35 KB
/
conway-numbers.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
cabal-version: 3.0
name: conway-numbers
version: 0.1
synopsis: An implementation of Conway's surreal numbers.
-- description:
homepage: https://github.com/alexaltair/conway-numbers
bug-reports: https://github.com/alexaltair/conway-numbers/issues
license: NONE
author: Alex Altair
maintainer: [email protected]
-- copyright:
category: Math
library
-- Modules exported by the library.
exposed-modules: Surreals
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends:
base ^>=4.15.0.0,
containers,
-- Directories containing source files.
hs-source-dirs: src
default-language: Haskell2010
test-suite conway-numbers-test
default-language: Haskell2010
-- The interface type and version of the test suite.
type: exitcode-stdio-1.0
-- Directories containing source files.
hs-source-dirs: test
-- The entrypoint to the test suite.
main-is: SurrealsTest.hs
-- Test dependencies.
build-depends:
base ^>=4.15.0.0,
conway-numbers,
hspec,
quickcheck-instances,