packages feed

pushover-0.1.0.0: pushover.cabal

name:                pushover
version:             0.1.0.0
synopsis:            A Haskell Pushover API library
description:         This package provides functionality to allow Haskell
                     developers to interact with the Pushover API 
                     (https://pushover.net).
homepage:            https://github.com/DanMeakin/pushover#readme
license:             BSD3
license-file:        LICENSE
author:              Dan Meakin
maintainer:          dan@danmeakin.com
copyright:           2017 Dan Meakin
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Lib
                     , Network.Pushover
                     , Network.Pushover.Exceptions
                     , Network.Pushover.Execute
                     , Network.Pushover.Message
                     , Network.Pushover.Reader
                     , Network.Pushover.Request
                     , Network.Pushover.Response
                     , Network.Pushover.Token
  build-depends:       base >= 4.7 && < 5
                     , aeson
                     , bytestring
                     , exceptions
                     , http-client
                     , http-client-tls
                     , mtl
                     , text
                     , time
                     , transformers
                     , uri-encode
  default-language:    Haskell2010

test-suite pushover-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Network.Pushover.RequestTest
  build-depends:       base
                     , bytestring
                     , http-client
                     , pushover
                     , tasty
                     , tasty-hunit
                     , text
                     , time
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/DanMeakin/pushover