packages feed

templater-0.0.3.0: templater.cabal

name: templater
version: 0.0.3.0
homepage: https://github.com/geraud/templater
bug-reports: https://github.com/geraud/templater/issues
license: MIT
license-file: LICENSE
author: Geraud Boyer
maintainer: Geraud Boyer <geraud@gmail.com>
copyright: Copyright (C) 2015 Geraud Boyer
synopsis: Simple string templater
description: Simple string templater
category: Text
build-type: Simple
cabal-version: >=1.10

tested-with:
    GHC == 7.6
  , GHC == 7.8
  , GHC == 7.10

extra-source-files:
  .gitignore
  .travis.yml
  README.md

source-repository head
  type: git
  location: git://github.com/geraud/templater.git

library
  build-depends:
    base >= 4.5 && < 5.9
    , text >= 1.1
    , attoparsec >= 0.12
  hs-source-dirs: src
  default-language: Haskell2010
  exposed-modules:
    Text.Templater

test-suite tests
  main-is: Spec.hs
  build-depends:
    base
    , templater
    , hspec == 2.*
    , hspec-attoparsec >= 0.1.0
    , HUnit
    , QuickCheck
    , text
  default-language:
    Haskell2010
  ghc-options:
    -Wall
    -Werror
  hs-source-dirs:
    test
  type:
    exitcode-stdio-1.0