packages feed

iter-stats-0.1.0.2: iter-stats.cabal

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

name:                iter-stats
version:             0.1.0.2
synopsis:            iteratees for statistical processing
description:         efficient statistical values of data streams
homepage:            https://github.com/JohnLato/iter-stats
license:             BSD3
license-file:        LICENSE
author:              John W. Lato
maintainer:          jwlato@gmail.com
copyright:           John W. Lato, 2012
category:            Math
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:     Statistics.Iteratee,
                       Statistics.Iteratee.Compat,
                       Statistics.Iteratee.Sample,
                       Statistics.Iteratee.Uniform
  -- other-modules:       
  build-depends:       base >=4.5 && < 4.8,
                       heap == 1.*,
                       iteratee >=0.8,
                       ListLike >=3,
                       mtl ==2.1.*
  hs-source-dirs:      src

Test-suite iter-stats-tests
  Hs-source-dirs: src tests
  Main-is:        TestSuite.hs
  Type:           exitcode-stdio-1.0

  Other-modules:
    Statistics.Iteratee.Tests

  Build-depends:
    HUnit                      >= 1.2 && < 1.3,
    statistics,
    test-framework             >= 0.4 && < 0.9,
    test-framework-hunit       >= 0.2 && < 0.4,
    test-framework-quickcheck2 >= 0.2 && < 0.4,
    vector                     >= 0.9,
    base,
    heap,
    iteratee,
    ListLike,
    mtl

source-repository head
  type:                git
  location:            git://github.com/JohnLato/iter-stats.git