]> gitweb.michael.orlitzky.com - spline3.git/blob - spline3.cabal
41de9859e48a3158e9cb3ca4351fb2945cec891b
[spline3.git] / spline3.cabal
1 cabal-version: 3.0
2 name: spline3
3 version: 1.0.0
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.0-only
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 >= 4.15 && < 5,
39 cmdargs >= 0.10,
40 MissingH >= 1,
41 repa >= 3,
42 repa-algorithms >= 3,
43 repa-io >= 3,
44 vector >= 0.10,
45 -- Additional test dependencies.
46 tasty >= 0.8,
47 tasty-hunit >= 0.8,
48 tasty-quickcheck >= 0.8.1
49
50 default-language:
51 Haskell2010
52
53 main-is:
54 Main.hs
55
56 hs-source-dirs:
57 src/
58
59 other-modules:
60 Assertions
61 Cardinal
62 CommandLine
63 Comparisons
64 Cube
65 Everything
66 Examples
67 ExitCodes
68 Face
69 FunctionValues
70 Grid
71 Misc
72 Paths_spline3
73 Point
74 RealFunction
75 ScaleFactor
76 Tetrahedron
77 Values
78 Volumetric
79
80 autogen-modules:
81 Paths_spline3
82
83 test-suite doctests
84 type: exitcode-stdio-1.0
85 hs-source-dirs: test
86 default-language: Haskell2010
87 main-is: Doctests.hs
88 build-depends:
89 base >= 4.15 && < 5,
90 -- Additional test dependencies.
91 doctest >= 0.9
92
93
94 test-suite testsuite
95 type: exitcode-stdio-1.0
96 hs-source-dirs: src test
97 default-language: Haskell2010
98 main-is: TestSuite.hs
99
100 other-modules:
101 Assertions
102 Cardinal
103 Comparisons
104 Cube
105 Examples
106 Face
107 FunctionValues
108 Grid
109 Misc
110 Point
111 RealFunction
112 ScaleFactor
113 Tetrahedron
114 Values
115
116 build-depends:
117 base >= 4.15 && < 5,
118 repa >= 3,
119 vector >= 0.10,
120 -- Additional test dependencies.
121 tasty >= 0.8,
122 tasty-hunit >= 0.8,
123 tasty-quickcheck >= 0.8.1
124
125
126 source-repository head
127 type: git
128 location: http://gitweb.michael.orlitzky.com/spline3.git
129 branch: master