packages feed

Blogdown-0.1.0: Blogdown.cabal

name:                Blogdown
version:             0.1.0
synopsis:            A markdown-like markup language designed for blog posts
description:         A library and executable that implement a modified, extended version of Markdown designed for writing blog posts.
license:             AGPL-3
license-file:        LICENSE
author:              Alex Becker
maintainer:          acbecker@uchicago.edu
copyright:           (c) 2017 Alex Becker
category:            Web
build-type:          Simple
extra-source-files:
    Readme.html
    ChangeLog.md
    Readme.md
data-files:          assets/footnotes.css, assets/footnotes.js
cabal-version:       >=1.10

library
  exposed-modules:     Parsing.Parse, Rendering.Render, Rendering.RenderOptions
  other-modules:       AST, Parsing.ParseBlock, Parsing.ParseInline, Parsing.Text, Parsing.Utils, Parsing.ParseFootnotes, Parsing.ParseHtml, Parsing.State, Parsing.TextUtils, Paths_Blogdown
  other-extensions:    CPP, DeriveGeneric
  build-depends:       base >=4.9 && <4.10, parsec >=3.1 && <3.2, containers >=0.5 && <0.6, MissingH >=1.4 && <1.5
  hs-source-dirs:      src
  default-language:    Haskell2010
  cpp-options:         -DCABAL

executable Blogdown
  main-is:             Blogdown.hs
  other-extensions:    CPP, DeriveGeneric
  build-depends:       base >=4.9 && <4.10, parsec >=3.1 && <3.2, containers >=0.5 && <0.6, MissingH >=1.4 && <1.5
  hs-source-dirs:      src
  default-language:    Haskell2010
  cpp-options:         -DCABAL

test-suite Test
  type:                exitcode-stdio-1.0
  main-is:             Test.hs
  other-extensions:    CPP, DeriveGeneric
  build-depends:       base >=4.9 && <4.10, parsec >=3.1 && <3.2, containers >=0.5 && <0.6, MissingH >=1.4 && <1.5
  hs-source-dirs:      src, test
  default-language:    Haskell2010
  cpp-options:         -DCABAL

source-repository Head
  type:                git
  location:            https://github.com/alexbecker/blogdown