cabal-version: 2.0
name: enum-types
version: 0.1.0.0
description:
  This library provides small enumeration types intended to be
  used in test suites. This is most useful when used with a companion
  package that provides orphan instances:
  .
  * quickcheck-enum-instances
  .
  * leancheck-enum-instances
  .
  The value these types provide is that they allow the user to
  be selective about the number of inhabitants a tested type should
  have.
homepage: https://github.com/andrewthad/quickcheck-enum
bug-reports: https://github.com/andrewthad/quickcheck-enum/issues
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2018 Andrew Martin
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files: README.md
category: Data
synopsis: small enum types

source-repository head
  type: git
  location: https://github.com/andrewthad/quickcheck-enum

library
  exposed-modules: Data.Enum.Types
  hs-source-dirs: src
  build-depends: base >= 4.9.1.0 && < 5
  default-language: Haskell2010