-
Notifications
You must be signed in to change notification settings - Fork 1
/
th-cas.cabal
70 lines (63 loc) · 2.17 KB
/
th-cas.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
name: th-cas
version: 0.2.0
synopsis: Compile-time CAS(Computer Algebra System)
description: Compile-time CAS(Computer Algebra System)
homepage: https://github.com/junjihashimoto/th-cas
license: MIT
license-file: LICENSE
author: Junji Hashimoto
maintainer: junji.hashimoto@gmail.com
-- copyright:
category: Math, Numeric
build-type: Simple
cabal-version: >=1.18
extra-source-files: ChangeLog.md
, README.md
bug-reports: https://github.com/junjihashimoto/th-cas/issues
source-repository head
type: git
location: https://github.com/junjihashimoto/th-cas
library
-- hs-source-dirs: src
exposed-modules: Algebra.CAS
, Algebra.CAS.Base
, Algebra.CAS.Diff
, Algebra.CAS.GrobnerBasis
, Algebra.CAS.Integrate
, Algebra.CAS.Solve
, Algebra.CAS.TH
build-depends: base == 4.*
, template-haskell
, text
, containers
ghc-options: -Wall
default-language: Haskell2010
-- executable haskell-cas
-- hs-source-dirs: app
-- main-is: Main.hs
-- ghc-options: -Wall
-- build-depends: base
-- , haskell-cas
-- default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Algebra.CAS.THSpec
, Algebra.CAS.BasicSpec
, Algebra.CAS.DiffSpec
, Algebra.CAS.SolveSpec
, Algebra.CAS.GrobnerBasisSpec
build-depends: base
, th-cas
, hspec
, template-haskell
ghc-options: -Wall
default-language: Haskell2010
test-suite doctests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: doctests.hs
ghc-options: -Wall -threaded
build-depends: base,
doctest