-
Notifications
You must be signed in to change notification settings - Fork 0
/
hypergeomatrix.cabal
50 lines (47 loc) · 1.85 KB
/
hypergeomatrix.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
cabal-version: 2.2
name: hypergeomatrix
version: 1.1.0.2
synopsis: Hypergeometric function of a matrix argument
description: Evaluation of hypergeometric functions of a matrix argument,
following Koev & Edelman's algorithm.
homepage: https://github.com/stla/hypergeomatrix#readme
license: BSD-3-Clause
license-file: LICENSE
author: Stéphane Laurent
maintainer: laurent_step@outlook.fr
copyright: 2022 Stéphane Laurent
category: Math, Numeric
build-type: Simple
extra-source-files: README.md
extra-doc-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Math.HypergeoMatrix
other-modules: Math.HypergeoMatrix.HypergeoMatrix
, Math.HypergeoMatrix.Internal
, Math.HypergeoMatrix.Gaussian
build-depends: base >= 4.7 && < 5
, array >= 0.5.4.0 && < 0.6
, containers >= 0.6.4.1 && < 0.7
, cyclotomic >= 1.1.1 && < 1.2
other-extensions: BangPatterns
, DefaultSignatures
, ScopedTypeVariables
, TypeFamilies
, TypeOperators
, TypeSynonymInstances
default-language: Haskell2010
ghc-options: -Wall
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests/
other-modules: Approx
Build-Depends: base >= 4.7 && < 5
, tasty >= 1.4 && < 1.6
, tasty-hunit >= 0.10 && < 0.11
, hypergeomatrix
Default-Language: Haskell2010
source-repository head
type: git
location: https://github.com/stla/hypergeomatrix