]> gitweb.michael.orlitzky.com - spline3.git/blob - spline3.cabal
doc/COPYING,spline3.cabal: use AGPL-3+, ship COPYING
[spline3.git] / spline3.cabal
1 cabal-version: 3.0
2 name: spline3
3 version: 1.0.1
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 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 <https://graphics.stanford.edu/data/voldata/>.
18
19 For more information and examples, please see the project homepage at
20 <https://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/COPYING
28 doc/README
29 -- Don't ship the references for copyright reasons.
30 --doc/references/*.pdf
31 doc/results/2d/*.png
32 doc/results/3d/*.png
33 util/view-mri-data.py
34
35
36 executable spline3
37
38 build-depends:
39 base >= 4.15 && < 5,
40 cmdargs >= 0.10,
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 repa >= 3,
120 vector >= 0.10,
121 -- Additional test dependencies.
122 tasty >= 0.8,
123 tasty-hunit >= 0.8,
124 tasty-quickcheck >= 0.8.1
125
126
127 source-repository head
128 type: git
129 location: https://gitweb.michael.orlitzky.com/spline3.git
130 branch: master