-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbed-and-breakfast.cabal
46 lines (40 loc) · 1.56 KB
/
bed-and-breakfast.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Name: bed-and-breakfast
Version: 0.5
Synopsis: Efficient Matrix and Vector operations in 100% Haskell.
Description: Efficient Matrix and Vector operations in 100% Haskell.
.
This library uses boxed and unboxed arrays
in the ST monad, in order to achieve efficiency.
License: MIT
License-File: LICENSE
Author: Julian Fleischer <[email protected]>
Maintainer: Julian Fleischer <[email protected]>
Build-Type: Simple
Cabal-Version: >= 1.8
Category: Numeric, Math, Linear Algebra
Stability: experimental
Homepage: https://hackage.haskell.org/package/bed-and-breakfast
Extra-Source-Files: CHANGES.md, README.md, ROADMAP.md
Source-Repository head
type: git
location: https://github.com/scravy/bed-and-breakfast.git
Library
Exposed-Modules: Numeric.Matrix,
Numeric.Matrix.Sugar,
Numeric.Vector
Build-Depends: base >= 4.5 && < 5,
deepseq >= 1.3,
array >= 0.4,
binary >= 0.5,
template-haskell >= 2.7,
cpphs >= 1.18
Hs-Source-Dirs: src
GHC-Options: -Wall -cpp -pgmP "cpphs --cpp"
Extensions: CPP
Test-Suite quickcheck
type: exitcode-stdio-1.0
main-is: quickcheck-tests.hs
GHC-Options: -O2
build-depends: base >= 4.5 && < 5,
bed-and-breakfast,
QuickCheck >= 2.4.2