packages feed

twitter-feed-0.1.1.1: twitter-feed.cabal

name:                twitter-feed
version:             0.1.1.1
synopsis:            Client for fetching Twitter timeline via Oauth
description:         Fetches a user timeline from Twitter, and optionally linkifies the results using the Twitter entity API.
homepage:            https://github.com/stackbuilders/twitter-feed
license:             MIT
license-file:        LICENSE
author:              Justin Leitgeb, Andrés Torres
maintainer:          justin@stackbuilders.com
category:            Web
build-type:          Simple
extra-source-files:
cabal-version:       >=1.10

source-repository head
  type:            git
  location:        https://github.com/stackbuilders/twitter-feed.git

library
  exposed-modules:     Web.Twitter.Feed
  ghc-options:         -Wall
  build-depends:         base >=4.6 && <4.8
                       , authenticate-oauth >=1.4
                       , aeson >=0.7 && <0.8
                       , http-conduit >=1.4 && <2.0

  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite twitter-library
  type: exitcode-stdio-1.0
  hs-source-dirs: test, src
  main-is: Suite.hs
  build-depends:
      base >=4.6 && <4.8
      , test-framework >=0.8 && <0.9
      , HUnit
      , test-framework-hunit
      , containers

      , authenticate-oauth >=1.4
      , aeson >=0.7 && <0.8
      , http-conduit >=1.4 && <2.0

  default-language:    Haskell2010