packages feed

twitter-feed-0.1.0.0: twitter-feed.cabal

name:                twitter-feed
version:             0.1.0.0
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
  build-depends:         base >=4.6 && <4.7
                       , json
                       , authenticate-oauth
                       , aeson
                       , http-conduit

  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.7
      , test-framework
      , HUnit
      , test-framework-hunit
      , containers

      -- Copied from the main build
      , aeson
      , json
      , authenticate-oauth
      , http-conduit

  default-language:    Haskell2010