-- Initial weather.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                Weather
version:             0.1.0.0
synopsis:            Library for interacting with the Weather Underground JSON API.
description: Weather is a simple library for interacting with the Weather Underground JSON API. It is not complete, but it may be useful still.
homepage:            https://github.com/bstamour/weather
license:             BSD3
license-file:        LICENSE
author:              Bryan St. Amour
maintainer:          bryan@bryanstamour.com
-- copyright:
category:            Web
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  exposed-modules:     Web.Weather
  -- other-modules:
  -- other-extensions:
  build-depends: base >= 4.7.0.2 && < 5
               , HTTP >= 4000.2.12
               , text >= 1.1.0.1
               , unordered-containers >= 0.2.5.1
               , aeson >= 0.8.0.2
               , bytestring >= 0.10.4.0
  hs-source-dirs:      src
  default-language:    Haskell2010