packages feed

qif-1.0.0: qif.cabal

name:                qif
version:             1.0.0
synopsis:            A simple QIF file format parser / printer
description:         A handy little library for dealing with this awful little
                     QIF files in your life.
homepage:            https://github.com/acw/qif
license:             BSD3
license-file:        LICENSE
author:              Adam Wick
maintainer:          awick@uhsure.com
copyright:           2016
category:            Finance
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2

library
  default-language:    Haskell2010
  exposed-modules:     Data.QIF
  other-extensions:    OverloadedStrings,
                       TemplateHaskell
  hs-source-dirs:      src
  ghc-options:         -Wall
  build-depends:
                       attoparsec   >= 0.13  && < 0.15,
                       base         >= 4.7   && < 4.10,
                       microlens    >= 0.4.7 && < 0.6,
                       microlens-th >= 0.4.1 && < 0.6,
                       text         >= 1.2.2 && < 1.9,
                       time         >= 1.7.0 && < 1.9

test-suite test-qif-serialization
  type:                exitcode-stdio-1.0
  main-is:             Test.hs
  default-language:    Haskell2010
  other-extensions:    OverloadedStrings
  build-depends:
                       attoparsec       >= 0.13  && < 0.15,
                       base             >= 4.7  && < 4.10,
                       QuickCheck       >= 2.9  && < 3.0,
                       tasty            >= 0.11 && < 0.15,
                       tasty-hunit      >= 0.9  && < 0.12,
                       tasty-quickcheck >= 0.8  && < 0.12,
                       text             >= 1.2.2 && < 1.9,
                       time             >= 1.7.0 && < 1.9,
                       qif

source-repository head
  type:     git
  location: https://github.com/acw/qif.git