packages feed

dtw-0.9.2.0: dtw.cabal

-- Initial dtw.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                dtw
version:             0.9.2.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&oldid=643501828
license:             MIT
license-file:        LICENSE
author:              Florian Hofmann
maintainer:          fho@f12n.de
-- copyright:           
category:            Algorithms, Data mining, Machine learning
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            https://github.com/fhaust/dtw


library
  build-depends:       base         >= 4.6 && < 4.9,
                       vector       >= 0.10 && < 0.11,
                       vector-space >= 0.10 && < 0.11,
                       containers   >= 0.5 && < 0.6,
                       MemoTrie     >= 0.6 && < 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,
                       thyme,
                       containers,
                       test-framework,
                       test-framework-quickcheck2,
                       QuickCheck <2.8,
                       MemoTrie
  ghc-options:         -O2 -Wall
  hs-source-dirs:      src
  default-language:    Haskell2010

--executable glossaer
--  main-is:             GlossAER.hs
--  -- other-modules:       
--  -- other-extensions:    
--  build-depends:       base >=4.7 && <4.8,
--                       aer,
--                       kdtree
--  ghc-options:         -O2 -Wall -fexcess-precision
--  hs-source-dirs:      src
--  default-language:    Haskell2010