packages feed

heredocs-0.1.4: heredocs.cabal

-- Initial heredoc.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                heredocs
version:             0.1.4
synopsis:            heredocument
description:         heredocument
homepage:            http://github.com/cutsea110/heredoc.git
license:             BSD3
license-file:        LICENSE
author:              cutsea110
maintainer:          cutsea110@gmail.com
-- copyright:           
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     
                     Text.Heredoc
  -- other-modules:       
  other-extensions:    
                     TemplateHaskell
                     QuasiQuotes
  build-depends:       base >=4.8 && <5
                     , bytestring >= 0.10.6.0
                     , doctest >= 0.11.0
                     , parsec >=3.1.9
                     , template-haskell >=2.10.0.0
                     , text >= 1.2.2.1
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite doctest
  type:              exitcode-stdio-1.0
  ghc-options:       -threaded
  main-is:           doctests.hs
  build-depends:     base >=4.8 && <5
                   , bytestring >= 0.10.6.0
                   , doctest >= 0.11.0
                   , heredocs
                   , text >= 1.2.2.1
  hs-source-dirs:      test
  default-language:    Haskell2010