packages feed

toboggan-0.1.0.1: toboggan.cabal

name: toboggan
version: 0.1.0.1
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2016 Vanessa McHale
maintainer: tmchale@wisc.edu
stability: experimental
homepage: https://github.com/vmchale/toboggan#readme
synopsis: Twitter bot generator
description:
    Please see README.md
category: Web
author: Vanessa McHale
extra-source-files:
    README.md
    configure/horoscope.mad
    stack.yaml

source-repository head
    type: git
    location: https://github.com/vmchale/toboggan

library
    exposed-modules:
        Web.Toboggan
    build-depends:
        base >=4.7 && <5,
        madlang >=2.1.0.1 && <2.2,
        tweet-hs >=0.5.3.2 && <0.6,
        text >=1.2.2.1 && <1.3,
        directory >=1.3.0.0 && <1.4,
        optparse-generic >=1.1.4 && <1.2
    default-language: Haskell2010
    hs-source-dirs: src

executable toboggan
    main-is: Main.hs
    build-depends:
        base >=4.9.1.0 && <4.10,
        toboggan >=0.1.0.1 && <0.2
    default-language: Haskell2010
    hs-source-dirs: app
    ghc-options: -threaded -rtsopts -with-rtsopts=-N -O3 -fllvm -optlo-O3