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

name:                quickcheck-property-comb
version:             0.1.0.0
synopsis:            Combinators for Quickcheck Property construction and Property diagnostics
description:         This project aims to reduce the pain of composing
                     invariants/properties, and the documenting of those invariants for determining the cause
                     of failure. Additionally, it intends to provide effective diagnostics for
                     invariants with changing post-conditions, leading to faster cause-of-failure
                     diagnosis.

homepage:            http://www.github.com/jfeltz/quickcheck-property-comb
license:             PublicDomain
license-file:        LICENSE
author:              John Feltz
maintainer:          jfeltz@gmail.com
category:            Testing
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Test.QuickCheck.Property.Comb
  -- other-modules:       
  other-extensions:    TupleSections, ScopedTypeVariables, GeneralizedNewtypeDeriving
  build-depends:       base >=4.5 && <4.6, QuickCheck >=2.5 && <2.6, mtl >=2.1 && <2.2
  hs-source-dirs:      ./ 
  default-language:    Haskell2010