packages feed

scotty-view-1.0.0: scotty-view.cabal

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

name:                scotty-view
description:         An extension for Scotty allowing its user to build an HTML
                     page easily. This library can also read an HTML page from a
                     file and modify it.
version:             1.0.0
author:              Philémon Bouzy
maintainer:          philemon.bouzy@gmail.com
license:             MIT
category:            Web
build-type:          Simple
cabal-version:       >=1.10
data-files:          executable/index.html

library
  exposed-modules:     ScottyView, HtmlPageBuilder, HtmlPage
  build-depends:       base >=4.7 && <4.8,
                       scotty,
                       text,
                       transformers >= 0.4.3
  default-language:    Haskell2010

executable web
  hs-source-dirs:      executable
  build-depends:       base >=4.7 && <4.8,
                       scotty,
                       text,
                       transformers >= 0.4.3,
                       scotty-view
  main-is:             Web.hs
  default-language:    Haskell2010