packages feed

uber-0.1.0.0: uber.cabal

name:                uber
version:             0.1.0.0
synopsis:            Uber client for Haskell 
description:         Bindings for Uber API
homepage:            https://github.com/byteally/webapi-uber.git
license:             BSD3
license-file:        LICENSE
author:              Tarun
maintainer:          Tarun <tj.joshi7@gmail.com>
--copyright:           2016 Author name here
category:            Web, Network
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Uber
                     , Uber.Auth
                     , Uber.Client
                     , Uber.Contract
                     , Uber.Settings
                     , Uber.Types.Product
                     , Uber.Types.PriceEstimate
                     , Uber.Types.TimeEstimate
                     , Uber.Types.History
                     , Uber.Types.UserInfo
                     , Uber.Types.RideRequest
                     , Uber.Types.Misc
                     , Uber.Types.Reminder
  build-depends:       base >= 4.7 && < 5
                     , aeson
                     , text
                     , webapi == 0.2.*
  default-language:    Haskell2010

test-suite uber-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , hspec
                     , text
                     , uber
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/byteally/webapi-uber.git