]> gitweb.michael.orlitzky.com - numerical-analysis.git/blob - numerical-analysis.cabal
Make numbers == 3000.1.* required.
[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.Simple, Roots.Fast
20
21 build-depends:
22 base == 4.5.*,
23 numbers == 3000.1.*,
24 -- Test deps
25 HUnit == 1.2.*,
26 QuickCheck == 2.*,
27 test-framework == 0.6.*,
28 test-framework-hunit == 0.2.*,
29 test-framework-quickcheck2 == 0.2.*
30
31 hs-source-dirs:
32 src/
33
34 ghc-options:
35 -Wall
36 -fwarn-hi-shadowing
37 -fwarn-missing-signatures
38 -fwarn-name-shadowing
39 -fwarn-orphans
40 -fwarn-type-defaults
41 -fwarn-tabs
42 -fwarn-incomplete-record-updates
43 -fwarn-monomorphism-restriction
44 -fwarn-unused-do-bind
45 -rtsopts
46 -threaded
47 -O2
48 -optc-O3
49 -optc-march=native
50
51
52 test-suite doctests
53 type: exitcode-stdio-1.0
54 hs-source-dirs: test
55 main-is: Doctests.hs
56 build-depends:
57 base == 4.5.*,
58 numbers == 3000.1.*,
59 -- Additional test dependencies.
60 doctest == 0.7.*
61
62 -- It's not entirely clear to me why I have to reproduce all of this.
63 ghc-options:
64 -rtsopts
65 -threaded
66 -funbox-strict-fields
67 -fexcess-precision
68 -fno-spec-constr-count
69 -O2
70 -optc-O3
71 -optc-march=native
72
73
74 source-repository head
75 type: git
76 location: http://git.michael.orlitzky.com/umbc/math620.git
77 branch: master