packages feed

googleplus-0.2.2: googleplus.cabal

name: googleplus
version: 0.2.2
synopsis: Haskell implementation of the Google+ API
description:
   Will implement the Google+ REST API. Google+ is a social network made by
   Google. Found out more at <http://plus.google.com>.

   Currently supports the API-key authentication only. OAuth should be coming
   along at some point. Only features read-only API access beacuse that is all
   that Google has published thus far.

category:           Web
license:            BSD3
license-file:       LICENSE
author:             Michael Xavier <michael@michaelxavier.net>
maintainer:         Michael Xavier <michael@michaelxavier.net>
cabal-version:      >= 1.6
build-type:         Simple
extra-source-files: README
homepage:           http://github.com/michaelxavier/GooglePlus

library
 Exposed-modules: Web.GooglePlus,
                  Web.GooglePlus.Types,
                  Web.GooglePlus.Monad
 Ghc-Options:     -Wall
 build-depends:   base            >= 4        && < 5,
                  aeson           >= 0.3.1.1  && < 0.4,
                  attoparsec      >= 0.9.1.2  && < 0.10,
                  containers      >= 0.4.0.0  && < 0.5,
                  bytestring      >= 0.9.1.10 && < 0.10,
                  enumerator      >= 0.4.9    && < 0.5,
                  haskell98       >= 1.1.0.1  && < 1.2,
                  http-enumerator >= 0.7.0    && < 0.8,
                  http-types      >= 0.6.0    && < 0.7,
                  mtl             >= 2.0.1.0  && < 2.1,
                  rfc3339         >= 1.0.4    && < 1.1,
                  text            >= 0.11.0.5 && < 0.12,
                  time            >= 1.2.0.3  && < 1.5,
                  transformers    >= 0.2.2.0  && < 0.3,
                  url             >= 2.1.2    && < 2.3

source-repository head
  type:     git
  location: git://github.com/michaelxavier/GooglePlus.git