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