name: bank-holidays-england
version: 0.2.0.11
synopsis: Calculation of bank holidays in England and Wales
description:
Calculation of bank holidays in England and Wales, using the rules that have
been in place since 1978, and including all exceptions to the rules in the
years 1995 to 2020.
homepage: https://github.com/DaveCTurner/bank-holidays-england
license: BSD3
license-file: LICENSE
author: David Turner
maintainer: dave.c.turner@gmail.com
copyright: (c) David Turner 2014-2019
category: Data
build-type: Simple
cabal-version: >=1.10
tested-with: GHC ==8.10.7 || ==9.4.8 || ==9.8.2 || ==9.10.1
library
exposed-modules: Data.Time.Calendar.BankHoliday.EnglandAndWales
build-depends: base >= 4.8 && < 5
, time >= 1.5.0 && < 1.15
, containers >= 0.5.0 && < 0.8
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall
build-tool-depends: hspec-discover:hspec-discover
build-depends: base >= 4.7 && < 5
, bank-holidays-england
, QuickCheck
, containers
, hspec
, time
other-modules: Spec
, Data.Time.Calendar.BankHoliday.EnglandAndWalesSpec