packages feed

approx-rand-test-0.0.3: approx-rand-test.cabal

Name:          approx-rand-test
Version:       0.0.3
License:       OtherLicense
License-file:  LICENSE
Copyright:     Copyright 2012 Daniël de Kok
Author:        Daniël de Kok <me@danieldk.eu>
Maintainer:    Daniël de Kok <me@danieldk.eu>
Homepage:      http://github.com/danieldk/approx-rand-test
Category:      Statistics
Synopsis:      Approximate randomization test
Description:   Utility to perform approximate randomization tests.
Cabal-Version: >= 1.8
Build-Type:    Simple

Source-Repository head
  Type:     git
  Location: git://github.com/danieldk/approx-rand-test.git

Source-Repository this
  Type:     git
  Location: git://github.com/danieldk/approx-rand-test.git
  Tag:      0.0.3

Library
  HS-Source-Dirs:  src
  Ghc-Options:     -O2 -Wall
  Exposed-modules: Statistics.Test.ApproxRand
  Build-Depends:   base >= 4 && < 5, vector == 0.9.*,
                   mersenne-random-pure64 == 0.2.0.*,
                   monad-mersenne-random == 0.1,
                   mtl == 2.0.1.*, statistics == 0.10.1.*,
                   transformers == 0.2.2.*


Executable approx_rand_test
  Main-Is:        approx-rand-test.hs
  HS-Source-Dirs: utils
  Ghc-Options:    -O2 -Wall
  Build-Depends:  base >= 4 && < 5, approx-rand-test,
                  conduit == 0.4.*, text == 0.11.1.*,
                  vector == 0.9.*,
                  mersenne-random-pure64 == 0.2.0.*,
                  monad-mersenne-random == 0.1,
                  resourcet == 0.3.*,
                  statistics == 0.10.1.*


Executable approx_rand_test_paired
  Main-Is:        approx-rand-test-paired.hs
  HS-Source-Dirs: utils
  Ghc-Options:    -O2 -Wall
  Build-Depends:  base >= 4 && < 5, approx-rand-test,
                  conduit == 0.4.*, text == 0.11.1.*,
                  vector == 0.9.*,
                  mersenne-random-pure64 == 0.2.0.*,
                  monad-mersenne-random == 0.1,
                  mtl == 2.0.1.*, resourcet == 0.3.*,
                  statistics == 0.10.1.*

Test-Suite tests
  Type:           exitcode-stdio-1.0
  Hs-Source-Dirs: tests
  Main-Is:        tests.hs
  ghc-options:    -Wall
  Build-Depends:  base >= 4 && < 5, vector == 0.9.*,
                  approx-rand-test,
                  mersenne-random-pure64 == 0.2.0.*,
                  monad-mersenne-random == 0.1,
                  HUnit == 1.2.4.*,
                  test-framework == 0.6.*,
                  test-framework-hunit == 0.2.*