-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhs-numerical.cabal
25 lines (23 loc) · 1.01 KB
/
hs-numerical.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
-- Initial hs-numerical.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hs-numerical
version: 0.1.0
synopsis: Numerical algorithms in pure Haskell
-- description:
homepage: http://github.com/bysy/hs-numerical
license: BSD3
license-file: LICENSE
author: Benjamin Schulz
maintainer: bysy@users.noreply.github.com
-- copyright:
category: Numerical
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Numerical.Refinable, Numerical.Roots, Numerical.Iteration, Numerical.Integration.Relax, Numerical.Roots.Ridder, Numerical.Roots.Basic, Numerical.Roots.Bisection
-- other-modules:
other-extensions: TypeFamilies, BangPatterns
build-depends: base >=4.8 && <4.9, fpipe >=0.0 && <0.1, array >=0.5 && <0.6
-- hs-source-dirs:
default-language: Haskell2010