-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
64 lines (60 loc) · 1.43 KB
/
package.yaml
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
name: tensors
version: 0.1.5
synopsis: Tensor in Haskell
description: Tensor use type level programming in haskell.
homepage: https://github.com/leptonyu/tensors#readme
license: BSD3
author: Daniel YU
maintainer: Daniel YU <[email protected]>
copyright: (c) 2018 Daniel YU
category: Library
extra-source-files:
- README.md
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -fno-warn-orphans -fno-warn-missing-signatures
default-extensions:
- AllowAmbiguousTypes
- DataKinds
- ExistentialQuantification
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- KindSignatures
- MultiParamTypeClasses
- PolyKinds
- RankNTypes
- ScopedTypeVariables
- TypeFamilies
- TypeOperators
- TypeSynonymInstances
dependencies:
- base >= 4.9 && < 5
- vector >=0.12.0.2 && <0.13
- deepseq
library:
source-dirs: src
exposed-modules:
- Data.Tensor
other-modules:
- Data.Tensor.Type
- Data.Tensor.Tensor
- Data.Tensor.Matrix
- Data.Tensor.Space
- Data.Tensor.Statistics
tests:
spec:
main: Spec.hs
source-dirs:
- test
- src
dependencies:
- hspec == 2.*
- QuickCheck >=2.11.1
- reflection >=2.1.4 && <2.2
benchmarks:
bm:
main: Bench.hs
source-dirs:
- bench
- src
dependencies:
- criterion