panpipe-0.2.0.0: panpipe.cabal
name: panpipe
version: 0.2.0.0
synopsis: Pandoc filter to execute code blocks
description: Executes pandoc code blocks annotated with 'pipe'
homepage: http://chriswarbo.net/essays/activecode
license: PublicDomain
license-file: LICENSE
author: Chris Warburton
maintainer: chriswarbo@gmail.com
category: Text
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: http://chriswarbo.net/git/panpipe.git
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: PanPipe
build-depends: base >=4.7 && <4.10
, unix >=2.7 && <2.8
, process >=1.2 && <1.7
, pandoc >=1.17 && <1.18
, pandoc-types
, temporary
executable panpipe
hs-source-dirs: panpipe
main-is: Main.hs
default-language: Haskell2010
build-depends: base >=4.7 && < 4.10
, panpipe
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base >=4.7 && <4.10
, panpipe
, QuickCheck
, tasty >= 0.7
, tasty-quickcheck
, pandoc