name:                     statistics-incremental
version:                  0.1.0.0
synopsis:                 incremental statistics folds 
author:                   Tony Day
maintainer:               tonyday567@gmail.com
license:                  MIT
license-File:             LICENSE
copyright:                2014, Tony Day
author:                   Tony Day
category:                 Statistics
build-type:               Simple
stability:                Experimental
cabal-version:            >= 1.10
extra-source-files:       README.markdown
description:              incremental staistics folds
source-repository         head
  type:                   git
  location:               git://github.com/tonyday567/statistics-incremental.git

library
  exposed-modules:        Statistics.Incremental

  build-depends:          base >= 4 && < 5,
                          foldl >= 1.0.3 && < 2
                          
  default-language:       Haskell2010
  hs-source-dirs:         src

test-suite test
  type:                   exitcode-stdio-1.0
  main-is:                test.hs
  default-language:       Haskell2010
  hs-source-dirs:         src, test
  build-depends:          base >= 4 && < 5,
                          bytestring >= 0.10.0.2,
                          foldl >= 1.0.3 && < 2,
                          tasty >= 0.7 && < 1,
                          tasty-golden >= 2.2.0.2 && < 3,
                          tasty-quickcheck >= 0.8,
                          tasty-hunit >= 0.4.1 && < 5,
                          statistics-incremental >= 0.1.0.0

benchmark bench
  type:                   exitcode-stdio-1.0
  main-is:                bench.hs
  default-language:       Haskell2010
  hs-source-dirs:         test
  build-depends:          base >= 4 && < 5,
                          foldl >= 1.0.3 && < 2,
                          criterion >= 0.10.0.0,
                          statistics-incremental >= 0.1.0.0