-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdata-haskell-examples.cabal
72 lines (67 loc) · 1.71 KB
/
data-haskell-examples.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: data-haskell-examples
version: 0.1.0.0
synopsis: Data analysis examples
description: A set of recommended Haskell libraries for data analysis and example usage.
category: project
homepage: https://github.com/DataHaskell/data-haskell-examples
license: BSD3
license-file: LICENSE
author: Tony Day
maintainer: tonyday567@gmail.com
copyright: Tony Day
build-type: Simple
cabal-version: >=1.14
extra-source-files: stack.yaml
library
default-language:
Haskell2010
ghc-options:
hs-source-dirs:
exposed-modules:
build-depends:
base >= 4.7 && < 5
default-extensions:
NoImplicitPrelude
test-suite data-haskell-examples-test
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options:
-funbox-strict-fields
-- -fforce-recomp
-- -threaded
-- -rtsopts
-with-rtsopts=-N
hs-source-dirs: test
main-is: Spec.hs
build-depends:
base >= 4.7 && < 5,
protolude,
data-haskell-examples,
doctest
default-extensions:
NoImplicitPrelude
executable data-haskell-examples
default-language:
Haskell2010
ghc-options:
-funbox-strict-fields
-- -fforce-recomp
-- -threaded
-- -rtsopts
-with-rtsopts=-N
hs-source-dirs: examples
main-is: examples.hs
other-modules: LinearRegression1
build-depends:
base >= 4.7 && < 5,
protolude,
data-haskell-examples,
vector,
hmatrix
default-extensions:
NoImplicitPrelude
source-repository head
type:
git
location:
https://github.com/DataHaskell/data-haskell-examples