Blame tasty-quickcheck.cabal

Packit 755117
-- Initial tasty-quickcheck.cabal generated by cabal init.  For further
Packit 755117
-- documentation, see http://haskell.org/cabal/users-guide/
Packit 755117
Packit 755117
name:                tasty-quickcheck
Packit 755117
version:             0.9.1
Packit 755117
synopsis:            QuickCheck support for the Tasty test framework.
Packit 755117
description:         QuickCheck support for the Tasty test framework.
Packit 755117
license:             MIT
Packit 755117
license-file:        LICENSE
Packit 755117
author:              Roman Cheplyaka <roma@ro-che.info>
Packit 755117
maintainer:          Roman Cheplyaka <roma@ro-che.info>
Packit 755117
-- copyright:
Packit 755117
homepage:            http://documentup.com/feuerbach/tasty
Packit 755117
bug-reports:         https://github.com/feuerbach/tasty/issues
Packit 755117
category:            Testing
Packit 755117
build-type:          Simple
Packit 755117
extra-source-files:  CHANGELOG.md
Packit 755117
cabal-version:       >=1.10
Packit 755117
Packit 755117
Source-repository head
Packit 755117
  type:     git
Packit 755117
  location: git://github.com/feuerbach/tasty.git
Packit 755117
  subdir:   quickcheck
Packit 755117
Packit 755117
library
Packit 755117
  exposed-modules:     Test.Tasty.QuickCheck
Packit 755117
  -- other-modules:
Packit 755117
  other-extensions:    GeneralizedNewtypeDeriving, DeriveDataTypeable
Packit 755117
  build-depends:       base == 4.*, tagged, tasty >= 0.10.1, random, QuickCheck >= 2.7
Packit 755117
Packit 755117
  -- hs-source-dirs:
Packit 755117
  default-language:    Haskell2010
Packit 755117
Packit 755117
test-suite test
Packit 755117
  default-language:
Packit 755117
    Haskell2010
Packit 755117
  type:
Packit 755117
    exitcode-stdio-1.0
Packit 755117
  hs-source-dirs:
Packit 755117
    tests
Packit 755117
  main-is:
Packit 755117
    test.hs
Packit 755117
  build-depends:
Packit 755117
      base >= 4 && < 5
Packit 755117
    , tasty >= 0.10
Packit 755117
    , tasty-quickcheck
Packit 755117
    , tasty-hunit
Packit 755117
    , pcre-light