packages feed

test-lib-0.1.0.0: test-lib.cabal

name:                test-lib
version:             0.1.0.0
synopsis:            A library to make a quick test-runner script.
description:         This library makes it easy to define an executable,
                     which can find and run a bunch of tests for a binary.
license:             ISC
license-file:        LICENSE
author:              Iavor Diatchki
maintainer:          iavor.diatchki@gmail.com
category:            Testing
build-type:          Simple
extra-source-files:  CHANGELOG.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     TestLib
  build-depends:       base >=4.12 && <4.13,
                       directory >=1.3 && <1.4,
                       filepath >=1.4 && <1.5,
                       process >=1.6 && <1.7,
                       containers >=0.6 && <0.7,
                       HUnit,
                       test-framework,
                       test-framework-hunit,
                       simple-get-opt

  ghc-options:         -Wall
  default-language:    Haskell2010