22-- documentation, see http://haskell.org/cabal/users-guide/
33
44name : geometric-algebra
5- version : 0.3.0.0
5+ version : 0.3.1
66synopsis : Geometric algebra calculations in Haskell
7- -- description:
7+ description :
8+ Library for (hopefully) elegant computations using geometric algebra. Built for understanding, not speed.
89license : MIT
910license-file : LICENSE
1011author : Pontus Granström
@@ -16,9 +17,33 @@ extra-source-files: README.md
1617cabal-version : >= 1.10
1718
1819library
19- exposed-modules : Numeric.GeometricAlgebra
20- other-modules : Numeric.BasisBlade
21- other-extensions : TemplateHaskell
22- build-depends : base >= 4.6 && < 4.7 , digits >= 0.2 && < 0.3 , QuickCheck >= 2.6 && < 2.7 , ieee754 >= 0.7 && < 0.8
23- hs-source-dirs : src
24- default-language : Haskell2010
20+ exposed-modules : Numeric.GeometricAlgebra
21+ other-modules : Numeric.BasisBlade, Numeric.Multivector
22+ other-extensions : TemplateHaskell
23+ hs-source-dirs : src
24+ default-language : Haskell2010
25+ build-depends : base == 4.6. *,
26+ digits == 0.2. *,
27+ ieee754 == 0.7. *
28+
29+ test-suite tests
30+ type : exitcode-stdio-1.0
31+ main-is : MainTests.hs
32+ hs-source-dirs : tests, src
33+ default-language : Haskell2010
34+ build-depends : base == 4.6. *,
35+ QuickCheck == 2.6. *,
36+ test-framework,
37+ test-framework-th,
38+ test-framework-quickcheck2,
39+ digits == 0.2. *,
40+ ieee754 == 0.7. *
41+ source-repository head
42+ type : git
43+ location :
[email protected] :pnutus/geometric-algebra.git
44+ -- git://github.com/pnutus/geometric-algebra.git
45+
46+ source-repository this
47+ type : git
48+ location :
[email protected] :pnutus/geometric-algebra.git
49+ tag : v0.3.1
0 commit comments