packages feed

ig-0.2: ig.cabal

name:                ig
version:             0.2
synopsis:            Bindings to Instagram's API.
homepage:            https://github.com/loyful/ig
license:             BSD3
license-file:        LICENSE
author:              Felipe Lessa <felipe.lessa@loyful.com>, JP Moresmau <jpmoresmau@gmail.com>
maintainer:          Loyful <opensource@loyful.com>
copyright:           (c) 2013 Loyful
category:            Web
build-type:          Simple
cabal-version:       >=1.8

description:
  This package exports bindings to Instagram's APIs (see
  <http://instagram.com/developer/>).
  .
  While we would like to have a complete binding to Instagram's
  API, this package is being developed on demand. If you need
  something that has not been implemented yet, please send a pull
  request or file an issue on GitHub
  (<https://github.com/loyful/ig/issues>).
  .
  A sample Yesod application demonstrating the API can be found at <https://github.com/loyful/ig-testapp>.

source-repository head
  type: git
  location: git://github.com/loyful/ig.git

flag debug
  default: False
  description: Print debugging info.

library
  hs-source-dirs: src
  ghc-options: -Wall
  exposed-modules:
    Instagram
  build-depends:
     base                 >= 4       && < 5
     , bytestring           >= 0.9     && < 0.11
     , text                 == 0.11.*
     , transformers         >= 0.2     && < 0.4
     , transformers-base
     , monad-control
     , resourcet
     , conduit              == 1.0.*
     , http-types
     , http-conduit         == 2.0.*
     , attoparsec           >= 0.10 && < 0.12
     , attoparsec-conduit   == 1.0.*
     , aeson                >= 0.5  && < 0.8
     , time
     , data-default
     , lifted-base
     , unordered-containers
     , crypto-api >= 0.11 && < 0.13
     , cryptohash >= 0.7
     , cryptohash-cryptoapi == 0.1.*
     , base16-bytestring    >= 0.1
  extensions:
    OverloadedStrings
    DeriveDataTypeable
  other-modules:  
                  Instagram.Types,
                  Instagram.Monad,
                  Instagram.Auth,
                  Instagram.Users,
                  Instagram.RealTime,
                  Instagram.Tags,
                  Instagram.Relationships,
                  Instagram.Media,
                  Instagram.Comments,
                  Instagram.Likes,
                  Instagram.Locations,
                  Instagram.Geographies
  if flag(debug)
    cpp-options: -DDEBUG