name:                QuickCheckVariant
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.0
synopsis:            Generator of "valid" and "invalid" data in a type class
-- description:         
homepage:            https://github.com/sanjorgek/QuickCheckVariant
license:             GPL-3
license-file:        LICENSE
author:              Jorge Santiago Alvarez Cuadros
maintainer:          sanjorgek@ciencias.unam.mx
bug-reports:         https://github.com/sanjorgek/QuickCheckVariant/issues
-- copyright:           
category:            Testing
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            git@github.com:sanjorgek/QuickCheckVariant.git

library
  exposed-modules:     Test.QuickCheck.Variant
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.8 && <4.9
                       , QuickCheck
  hs-source-dirs:      src
  default-language:    Haskell98