-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdtw.cabal
59 lines (53 loc) · 1.79 KB
/
dtw.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
-- Initial dtw.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: dtw
version: 1.0.4.0
synopsis: (Fast) Dynamic Time Warping
description: This package implements dynamic time warping as described
here <http://en.wikipedia.org/w/index.php?title=Dynamic_time_warping>
license: MIT
license-file: LICENSE
author: Florian Hofmann
maintainer: [email protected]
-- copyright:
category: Algorithms, Data mining, Machine learning
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
tested-with:
GHC ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.5
|| ==9.4.4
source-repository head
type: git
location: https://github.com/fhaust/dtw
library
build-depends: base >= 4.6 && < 4.17,
vector >= 0.10 && < 0.13,
vector-space >= 0.9 && < 0.17,
containers >= 0.5 && < 0.7
exposed-modules: Data.DTW
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
test-suite maintest
type: exitcode-stdio-1.0
hs-source-dirs: src,test
main-is: MainTest.hs
build-depends: base,
vector,
vector-space,
containers,
test-framework,
test-framework-quickcheck2,
QuickCheck
ghc-options: -O2 -Wall
-- ghc-prof-options: -fprof-auto -auto-all -caf-all -rtsopts
hs-source-dirs: src
default-language: Haskell2010