packages feed

themplate-1.2: themplate.cabal

name:          themplate
version:       1.2
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Benno Fünfstück
maintainer:    Benno Fünfstück <benno.fuenfstueck@gmail.com>
stability:     experimental
homepage:      http://github.com/bennofs/themplate/
bug-reports:   http://github.com/bennofs/themplate/issues
copyright:     Copyright (C) 2013-2014 Benno Fünfstück
synopsis:      Project templating tool
description:   Themplate is a tool to generate projects from templates. The templating language is described at https://github.com/bennofs/themplate.
build-type:    Simple
category:      Application, Console, Development, Template

extra-source-files:
  .ghci
  .gitignore
  .travis.yml
  .vim.custom
  README.md

source-repository head
  type: git
  location: https://github.com/bennofs/themplate.git

executable themplate
  hs-source-dirs: src
  main-is: Main.hs
  other-modules: Pattern
  default-language: Haskell2010
  ghc-options: -Wall
  build-depends:
      base >= 4.4 && < 5
    , filepath
    , directory
    , text
    , transformers >= 0.2
    , transformers-compat >= 0.3
    , either
    , optparse-applicative >= 0.10
    , configurator
    , errors >= 2