]> gitweb.michael.orlitzky.com - spline3.git/blob - spline3.cabal
4ff6891609c1822f6631a33bc3e149852f313fe7
[spline3.git] / spline3.cabal
1 name: spline3
2 version: 1.0.0
3 cabal-version: >= 1.8
4 author: Michael Orlitzky
5 maintainer: Michael Orlitzky <michael@orlitzky.com>
6 homepage: http://michael.orlitzky.com/code/spline3.xhtml
7 category: Math
8 license: AGPL-3
9 license-file: doc/LICENSE
10 bug-reports: mailto:michael@orlitzky.com
11 synopsis:
12 A parallel implementation of the Sorokina/Zeilfelder spline scheme.
13 description:
14 Interpolate volumetric data according to "Local quasi-interpolation
15 by cubic C^1 splines on type-6 tetrahedral partitions." The defaults
16 are tailored to the MRI data contained in data/mri.bin from the
17 Stanford volume data archive at <http://graphics.stanford.edu/data/voldata/>.
18 .
19 For more information and examples, please see the project homepage at
20 <http://michael.orlitzky.com/code/spline3.xhtml>.
21
22 build-type: Simple
23 extra-source-files:
24 data/mri.bin
25 data/mri.info
26 data/announcement.txt
27 doc/README
28 -- Don't ship the references for copyright reasons.
29 --doc/references/*.pdf
30 doc/results/2d/*.png
31 doc/results/3d/*.png
32 util/view-mri-data.py
33
34
35 executable spline3
36
37 build-depends:
38 base < 5,
39 cmdargs >= 0.10,
40 filepath >= 1,
41 MissingH >= 1,
42 repa >= 3,
43 repa-algorithms >= 3,
44 repa-io >= 3,
45 vector >= 0.10,
46 -- Additional test dependencies.
47 tasty >= 0.8,
48 tasty-hunit >= 0.8,
49 tasty-quickcheck >= 0.8.1
50
51 main-is:
52 Main.hs
53
54 hs-source-dirs:
55 src/
56
57 other-modules:
58 Assertions
59 Cardinal
60 CommandLine
61 Comparisons
62 Cube
63 Everything
64 Examples
65 ExitCodes
66 Face
67 FunctionValues
68 Grid
69 Misc
70 Paths_spline3
71 Point
72 RealFunction
73 ScaleFactor
74 Tetrahedron
75 Values
76 Volumetric
77
78
79 test-suite doctests
80 type: exitcode-stdio-1.0
81 hs-source-dirs: test
82 main-is: Doctests.hs
83 build-depends:
84 base < 5,
85 -- Additional test dependencies.
86 doctest >= 0.9
87
88
89 test-suite testsuite
90 type: exitcode-stdio-1.0
91 hs-source-dirs: src test
92 main-is: TestSuite.hs
93
94 other-modules:
95 Assertions
96 Cardinal
97 Comparisons
98 Cube
99 Examples
100 Face
101 FunctionValues
102 Grid
103 Misc
104 Point
105 RealFunction
106 ScaleFactor
107 Tetrahedron
108 Values
109
110 build-depends:
111 base < 5,
112 cmdargs >= 0.10,
113 filepath >= 1,
114 MissingH >= 1,
115 repa >= 3,
116 repa-algorithms >= 3,
117 repa-io >= 3,
118 vector >= 0.10,
119 -- Additional test dependencies.
120 tasty >= 0.8,
121 tasty-hunit >= 0.8,
122 tasty-quickcheck >= 0.8.1
123
124
125 source-repository head
126 type: git
127 location: http://gitweb.michael.orlitzky.com/spline3.git
128 branch: master