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

name:                probability-test
version:             0.0.0.1
synopsis:            Automatic testing for Data.Approximate.
description:         probability-test currently tests whether the
  confidence of an Approximate is accurate. It will be expanded to
  test a larger class of probabilistic assertions.
license:             BSD3
license-file:        LICENSE
author:              Alan McAvinney <alan1@isomerica.net>
maintainer:          alan1@isomerica.net
copyright:           2014-2015 Alan McAvinney
category:            Testing
build-type:          Simple
extra-source-files:  README
cabal-version:       >=1.10
homepage:            https://github.com/EldradUlt/probability-test

source-repository head
  type:     git
  location: https://github.com/EldradUlt/probability-test

Test-Suite probability-test-tests
  type:       exitcode-stdio-1.0
  default-language:    Haskell2010
  Ghc-Options: -Wall -threaded -rtsopts -auto-all -fprof-auto -caf-all
  main-is:    Tests.hs
  build-depends:
      probability-test
    , base >= 4.6 && <4.8
    , QuickCheck >=2.7 && <2.8
    , statistics >=0.11 && <0.12
    , tasty-hunit >=0.9 && <0.10
    , tasty == 0.10.*
    , approximate == 0.2.*
    , tasty-quickcheck == 0.8.*
    , mwc-random == 0.13.*
    , conduit == 1.1.*
    , erf == 2.0.*
    , containers == 0.5.*
    , hyperloglog == 0.3.*
    , reflection == 1.5.*
    , vector == 0.10.*
    , log-domain == 0.10.*

library
  exposed-modules:     Test.ProbabilityCheck.Internal Test.Tasty.TestApproximate Test.TestApproximate
  -- other-modules:       
  other-extensions:    MultiParamTypeClasses, FlexibleInstances
  Ghc-Options: -Wall -rtsopts -auto-all -fprof-auto -caf-all
  build-depends:
      base >=4.6 && <4.8
    , QuickCheck >=2.7 && <2.8
    , vector >=0.10 && <0.11
    , statistics >=0.11 && <0.12
    , tasty-hunit >=0.9 && <0.10
    , tasty == 0.10.*
    , math-functions == 0.1.5.*
    , approximate == 0.2.*
    , conduit == 1.1.*
    , containers == 0.5.*
    , transformers == 0.3.*
    , time == 1.4.*
    , sign == 0.4.*
    , log-domain == 0.10.*
    , terminal-progress-bar == 0.0.1.*
  hs-source-dirs:      src
  default-language:    Haskell2010