packages feed

serpentine-0.2: serpentine.cabal

name:                serpentine
version:             0.2
synopsis:            Simple project template from stack
description:         Please see README.md
homepage:            http://github.com/githubuser/serpentine#readme
license:             BSD3
license-file:        LICENSE
author:              Author name here
maintainer:          example@example.com
copyright:           2010 Author Here
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library 
  hs-source-dirs:      src
  exposed-modules:     
    Serpentine
    Serpentine.Crud
    Serpentine.PathPiece
    Serpentine.Playground
    Serpentine.Try
  default-language:    Haskell2010
  build-depends:       
      base >= 4.7 && < 5
    , text
    , singletons
    , template-haskell
    , vinyl
    , pringletons

executable example
  hs-source-dirs:      example
  main-is:             main.hs
  default-language:    Haskell2010
  build-depends:       
      base >= 4.7 && < 5
    , serpentine
    , text
    , singletons