packages feed

chorale-0.1.3: chorale.cabal

name:           chorale
version:        0.1.3
homepage:       https://github.com/mocnik-science/chorale
bug-reports:    https://github.com/mocnik-science/chorale/issues
synopsis:       A module containing basic functions that the prelude does not offer
description:
  Chorale is a Haskell module that contains basic functions that the prelude
  does not offer. The prelude is traditionally followed by a chorale ...
license:        MIT
license-file:   LICENSE
author:         Franz-Benjamin Mocnik <mail@mocnik-science.net>
maintainer:     Franz-Benjamin Mocnik <mail@mocnik-science.net>
copyright:      2013-2016 Franz-Benjamin Mocnik
category:       Prelude
cabal-version:  >= 1.20
build-type:     Simple
extra-source-files:
  README.md

source-repository head
  type: git
  location: git://github.com/mocnik-science/chorale.git

library
  exposed-modules:
    Chorale.Common
  hs-source-dirs: src/
  default-language: Haskell2010
  ghc-options:
    -Wall
    -O2
  build-depends:
    base >= 4.6 && < 5,
    containers >= 0.5,
    safe >= 0.3.4

test-suite test
  type: exitcode-stdio-1.0
  main-is: Test.hs
  hs-source-dirs: tests/
  default-language: Haskell2010
  build-depends:
    base >= 4.6 && < 5,
    chorale >= 0.1.1,
    containers >= 0.5,
    HUnit >= 1.2.5.2,
    ieee754 >= 0.7.3,
    QuickCheck >= 2.6,
    safe >= 0.3.4,
    test-framework >= 0.8.0.3,
    test-framework-hunit >= 0.3.0.1,
    test-framework-quickcheck2 >= 0.3.0.2