packages feed

hsini-0.5.0: hsini.cabal

name: hsini
version: 0.5.0
license: BSD3
license-file: LICENSE
author: Magnus Therning
maintainer: magnus@therning.org
copyright: Magnus Therning, 2010-2014
synopsis: Package for user configuration files (INI)
description: None yet
build-type: Custom
category: Configuration, Data
cabal-version: >= 1.10

source-repository head
    type: git
    location: https://github.com/magthe/hsini.git

library
    hs-source-dirs: src
    default-language: Haskell2010
    build-depends: base >=4.7 && <4.10,
                   bytestring ==0.10.*,
                   containers ==0.5.*,
                   mtl ==2.2.*,
                   parsec ==3.1.*
    exposed-modules: Data.Ini
                     Data.Ini.Types
                     Data.Ini.Reader
    other-modules: Data.Ini.Reader.Internals

test-suite hsini-tests
    type: exitcode-stdio-1.0
    hs-source-dirs: tst, src
    main-is: Main.hs
    other-modules: Data.Ini
                   Data.Ini.Reader.Internals
                   Data.Ini.Types
                   Ini
                   ReaderI
    default-language: Haskell2010
    build-depends: base,
                   containers,
                   bytestring,
                   parsec,
                   mtl,
                   HUnit,
                   tasty,
                   tasty-hunit,
                   tasty-quickcheck,
                   tasty-th,
                   QuickCheck