packages feed

HSmarty-0.2.0.3: HSmarty.cabal

name:                HSmarty
version:             0.2.0.3
synopsis:            Small template engine
description:         Haskell implementation of a subset of the PHP-Smarty template language
Homepage:            https://github.com/agrafix/HSmarty
Bug-reports:         https://github.com/agrafix/HSmarty/issues
license:             BSD3
license-file:        LICENSE
author:              Alexander Thiemann <mail@athiemann.net>
maintainer:          Alexander Thiemann <mail@athiemann.net>
copyright:           (c) 2013 - 2015 by Alexander Thiemann
category:            Text
build-type:          Simple
cabal-version:       >=1.8
data-dir:            data
data-files:          test.tpl

Library
  hs-source-dirs:    src
  exposed-modules:   Text.HSmarty,
                     Text.HSmarty.Parser.Smarty,
                     Text.HSmarty.Parser.Util,
                     Text.HSmarty.Types
  other-modules:     Text.HSmarty.Render.Engine
  Ghc-Options:       -Wall
  build-depends:
                     HTTP,
                     aeson >=0.8,
                     attoparsec >=0.11,
                     attoparsec-expr >=0.1.1,
                     base >= 4 && < 5,
                     mtl >=2.2,
                     scientific >=0.3,
                     text >=1.2,
                     unordered-containers >=0.2,
                     vector >=0.10

Test-Suite TestHSmarty
  hs-source-dirs:    test
  other-modules:     Text.HSmarty.Parser.SmartyTest
  Type:              exitcode-stdio-1.0
  Main-Is:           Tests.hs
  Ghc-Options:       -Wall
  build-depends:
                     HSmarty,
                     HTF,
                     aeson >=0.8,
                     attoparsec >=0.11,
                     base >= 4 && < 5,
                     text >=1.2

source-repository head
  type:     git
  location: git://github.com/agrafix/HSmarty.git