name:                google-oauth2-for-cli
version:             0.1.0.1
synopsis:            Get Google OAuth2 token for CLI tools
description:         Please see README.md
homepage:            https://github.com/ishiy1993/google-oauth2-for-cli#readme
license:             BSD3
license-file:        LICENSE
author:              ishiy
maintainer:          y.ishihara.1993@gmail.com
copyright:           Copyright: (c) 2016 ishiy
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Network.Google.OAuth2
  build-depends:       base >= 4.7 && < 5
                     , aeson
                     , bytestring
                     , directory
                     , filepath
                     , http-types
                     , req
                     , time
                     , unix
                     , wai
                     , warp
  default-language:    Haskell2010
  ghc-options:         -Wall

Test-Suite spec
  Type:                 exitcode-stdio-1.0
  Default-Language:     Haskell2010
  Hs-Source-Dirs:       test
  Ghc-Options:          -Wall
  Main-Is:              Spec.hs
  other-modules:        Network.Google.OAuth2Spec
  Build-Depends:        base
                      , hspec
                      , google-oauth2-for-cli

source-repository head
  type:     git
  location: https://github.com/ishiy1993/google-oauth2-for-cli