packages feed

namelist-0.1.0: namelist.cabal

name:                namelist
version:             0.1.0
synopsis:            fortran90 namelist parser/pretty printer
description:         fortran90 namelist parser/pretty printer
license:             MIT
license-file:        LICENSE
author:              HirotomoMoriwaki<philopon.dependence@gmail.com>
maintainer:          HirotomoMoriwaki<philopon.dependence@gmail.com>
Homepage:            https://github.com/philopon/namelist-hs
Bug-reports:         https://github.com/philopon/namelist-hs/issues
copyright:           (c) 2015 Hirotomo Moriwaki
category:            Text
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Text.Namelist
                       Text.Namelist.Types
                       Text.Namelist.Parser
                       Text.Namelist.Pretty
  build-depends:       base                      >=4.6   && <4.9
                     , case-insensitive          >=1.1   && <1.3
                     , parsec                    >=3.0   && <3.2
                     , data-default-class        >=0.0   && <0.1
  hs-source-dirs:      src
  ghc-options:         -Wall -O2
  default-language:    Haskell2010

test-suite tasty
  main-is:             tasty.hs
  other-modules:       Instances
  type:                exitcode-stdio-1.0
  build-depends:       base                      >=4.6   && <4.9
                     , tasty                     >=0.10  && <0.11
                     , tasty-hunit               >=0.9   && <0.10
                     , tasty-quickcheck          >=0.8   && <0.9
                     , case-insensitive          >=1.1   && <1.3
                     , QuickCheck
                     , namelist
  hs-source-dirs:      tests
  ghc-options:         -Wall
  default-language:    Haskell2010