packages feed

google-static-maps-0.1.0.0: google-static-maps.cabal

name:                google-static-maps
version:             0.1.0.0
synopsis:            Bindings to the Google Static Maps API
description:         The <https://developers.google.com/maps/documentation/static-maps/intro Google Static Maps API>
                     returns a map as an image via an HTTP request. This library
                     provides bindings in Haskell to that API.
                     .
                     NB: The use of the Google Static Maps API services is
                     subject to the <https://developers.google.com/maps/terms Google Maps APIs Terms of Service>,
                     which terms restrict the use of content.
                     .
                     This package has no connection with Google Inc. or its
                     affiliates.
homepage:            https://github.com/mpilgrem/google-static-maps#readme
license:             BSD3
license-file:        LICENSE
author:              Mike Pilgrem
maintainer:          public@pilgrem.com
copyright:           Mike Pilgrem
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Web.Google.Static.Maps
  build-depends:       base >= 4.7 && < 5
                     , bytedump >= 1.0 && < 1.1
                     , http-client >= 0.5 && < 0.6
                     , JuicyPixels >= 3.2 && < 3.3
                     , servant >= 0.9 && < 0.10
                     , servant-client >= 0.9 && < 0.10
                     , servant-JuicyPixels >= 0.3 && < 0.4
                     , text >= 1.2 && < 1.3
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/mpilgrem/google-static-maps