name:                coverage
version:             0.1.0.4
synopsis:            Exhaustivity Checking Library
homepage:            https://github.com/nicodelpiano/coverage
bug-reports:         https://github.com/nicodelpiano/coverage/issues
description:         A library for exhaustivity and redundancy checking.
license:             MIT
license-file:        LICENSE
author:              Nicolas Del Piano <ndel314@gmail.com>
maintainer:          Nicolas Del Piano <ndel314@gmail.com>
copyright:           (c) 2015 Nicolas Del Piano
category:            Control
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

extra-source-files:
  examples/*.hs
  tests/*.hs

source-repository head
    type: git
    location: https://github.com/nicodelpiano/coverage.git

library
  ghc-options:         -Wall
  exposed-modules:     Control.Coverage
                       Control.Coverage.Internal
  -- other-modules:
  -- other-extensions:
  build-depends:       base >=4.7 && <4.8
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite tests
  type:
      exitcode-stdio-1.0
  ghc-options:
      -Wall
  hs-source-dirs:
      tests, .
  main-is:
      Spec.hs
  other-modules:
      CoverageSpec
      CoverageSupport
      CoverageUnitSpec
  build-depends:
      base >=4.7 && <4.8, coverage, QuickCheck >=2.7, hspec   == 2.*, HUnit >= 1.3 
  default-language:    Haskell2010