-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
72 lines (60 loc) · 1.61 KB
/
package.yaml
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
name: symtegration
version: 0.4.0
homepage: https://symtegration.dev/
github: "symtegration/symtegration"
author: "Yoo Chung"
maintainer: "[email protected]"
copyright: Copyright 2025 Yoo Chung
license: Apache-2.0
extra-source-files:
- LICENSE
- README.md
- docs/**
synopsis: Library for symbolic integration of mathematical expressions.
category: Mathematics, Symbolic Computation
description: |
Symtegration is a library providing symbolic integration of mathematical expressions.
See the [README](https://github.com/symtegration/symtegration#readme) on GitHub.
tested-with: GHC == 9.12.1 || == 9.10.1 || == 9.8.4 || == 9.6.6
language: GHC2021
default-extensions:
- LambdaCase
- OverloadedStrings
ghc-options:
- -Wall
- -Werror
dependencies:
- ad >= 4.5 && < 4.6
- base >= 4.18 && < 4.22
- containers >= 0.6 && < 0.8
- text >= 2.0 && < 2.2
- text-show >= 3.10 && < 3.12
library:
source-dirs: src
tests:
spec:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- symtegration
- hspec >= 2.11 && < 2.12
- QuickCheck >= 2.14 && < 2.16
build-tools:
- hspec-discover >= 2.11 && < 2.12
when:
condition: false
other-modules:
- Examples # Don't include the doctest runner.
examples:
main: test/Examples.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- symtegration
- doctest-parallel >= 0.3 && < 0.4