iban-0.1.1.0: iban.cabal
-- Initial iban.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: iban
version: 0.1.1.0
synopsis: Validate and generate IBANs
description: A library to validate and generate (for now only German) IBANs.
homepage: https://github.com/ibotty/iban
license: BSD3
license-file: LICENSE
author: Tobias Florek
maintainer: tob@butter.sh
copyright: Tobias Florek, 2014
category: Finance
build-type: Simple
extra-source-files: Changelog.md
cabal-version: >=1.10
library
exposed-modules: Finance.IBAN
, Finance.IBAN.Internal
, Finance.IBAN.Germany
, Finance.IBAN.Germany.Core
, Finance.IBAN.Germany.Data
, Finance.IBAN.Data
-- other-modules:
other-extensions: OverloadedStrings
build-depends: base >=4.5 && <4.8
, containers >=0.3 && <0.6
, iso3166-country-codes
, text >=0.11 && <1.3
, unordered-containers ==0.2.*
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
other-extensions: OverloadedStrings
build-depends: base
, HUnit
, iban
, tasty
, tasty-hunit
, text
hs-source-dirs: test
main-is: Main.hs
other-modules: IBANRegistryExamples
default-language: Haskell2010
type: exitcode-stdio-1.0
-- flag maintenance-tools
-- description: Build tools to generate data files from original sources
-- default: False
-- manual: True
-- executable blz
-- other-extensions: OverloadedStrings
-- -- exposed-modules:
-- hs-source-dirs: tools
-- build-depends: base
-- , bytestring >=0.9 && <0.11
-- , cassava == 0.4.*
-- , iban
-- , text
-- , vector == 0.10.*
-- main-is: Blz.hs
-- default-language: Haskell2010
-- if true
-- -- if flag(maintenance-tools)
-- buildable: True
-- else
-- buildable: False
source-repository head
type: git
location: https://github.com/ibotty/iban