name:                htconfig
version:             0.1.0.0
synopsis:            higher type configuration parsing
description:         The philosophy of this package is that configuration and input data should be parsed into a single data structure. Sources can be command line arguments, configuration files and even secondary files referred to by #include statements. See <Data-Configfile-Class.html Data.Configfile.Class> for details. 
homepage:            http://www.lackmann-phymetric.de
license:             GPL-3
license-file:        LICENSE
author:              Olaf Klinke
maintainer:          Olaf Klinke <http://hackage.haskell.org/user/olf> <olaf.klinke@phymetric.de>
copyright:           2018 Lackmann Phymetric GmbH
category:            Parsing
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  test/example.conf, test/include.conf test/header.txt

library
  hs-source-dirs:      src,test
  exposed-modules:     Data.Configfile.Class
                     , Control.Monad.Parse.Class
                     , Control.Monad.Parse.Megaparsec
  default-language:    Haskell2010
  build-depends:       base >= 4.9 && < 5
                     , czipwith >= 1.0.1.0
                     , megaparsec >= 6.0.0 && < 7
                     , mtl >= 2.2.1
                     , lens >= 3.8
  ghc-options: