]> gitweb.michael.orlitzky.com - numerical-analysis.git/blob - numerical-analysis.cabal
Add the numerical-analysis Haskell library.
[numerical-analysis.git] / numerical-analysis.cabal
1 name: numerical-analysis
2 version: 0.0.0
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 license: GPL-3
7 license-file: doc/LICENSE
8 bug-reports: mailto:michael@orlitzky.com
9 build-type: Simple
10 category: Text
11 synopsis:
12 A library of numerical analysis functions for UMBC's MATH620.
13 description:
14 Haskell implementations of algorithms from UMBC's Numerical
15 Analysis course, MATH620.
16 data-files: makefile
17
18 library
19 exposed-modules: Roots
20
21 build-depends:
22 base == 4.5.*,
23 HUnit == 1.2.*,
24 QuickCheck == 2.*,
25 test-framework == 0.6.*,
26 test-framework-hunit == 0.2.*,
27 test-framework-quickcheck2 == 0.2.*
28
29 hs-source-dirs:
30 src/
31
32 ghc-options:
33 -Wall
34 -fwarn-hi-shadowing
35 -fwarn-missing-signatures
36 -fwarn-name-shadowing
37 -fwarn-orphans
38 -fwarn-type-defaults
39 -fwarn-tabs
40 -fwarn-incomplete-record-updates
41 -fwarn-monomorphism-restriction
42 -fwarn-unused-do-bind
43 -rtsopts
44 -threaded
45 -O2
46 -optc-O3
47 -optc-march=native
48
49
50 test-suite doctests
51 type: exitcode-stdio-1.0
52 hs-source-dirs: test
53 main-is: Doctests.hs
54 build-depends:
55 base == 4.5.*,
56 -- Additional test dependencies.
57 doctest == 0.7.*
58
59 -- It's not entirely clear to me why I have to reproduce all of this.
60 ghc-options:
61 -rtsopts
62 -threaded
63 -funbox-strict-fields
64 -fexcess-precision
65 -fno-spec-constr-count
66 -O2
67 -optc-O3
68 -optc-march=native
69
70
71 source-repository head
72 type: git
73 location: http://git.michael.orlitzky.com/umbc/math620.git
74 branch: master