packages feed

money-0.1.0: money.cabal

name: money
version: 0.1.0

build-type: Simple
cabal-version: >= 1.10

license: MIT
license-file: LICENSE.md

copyright: 2016 Juan Pedro Villa Isaza
author: Juan Pedro Villa Isaza <jpvillaisaza@gmail.com>
maintainer: Juan Pedro Villa Isaza <jpvillaisaza@gmail.com>

stability: Experimental

homepage: https://github.com/jpvillaisaza/money
bug-reports: https://github.com/jpvillaisaza/money/issues

synopsis: Money
description: Money.

category: Finance

tested-with: GHC == 8.0.1

extra-source-files:
  CHANGELOG.md
  README.md


library
  hs-source-dirs:
      src
  exposed-modules:
      Data.Money
      Data.Money.Currency
  build-depends:
      base >= 4.9 && < 4.10
  default-language:
      Haskell2010
  ghc-options:
      -Wall


test-suite examples
  type:
      exitcode-stdio-1.0
  hs-source-dirs:
      test/examples
  main-is:
      Main.hs
  build-depends:
      base
    , doctest >= 0.11 && < 0.12
  default-language:
      Haskell2010
  ghc-options:
      -Wall -threaded -rtsopts -with-rtsopts=-N


source-repository head
  type: git
  location: https://github.com/jpvillaisaza/money