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