packages feed

hzulip-0.2.0.2: hzulip.cabal

name:                hzulip
version:             0.2.0.2
synopsis:            A haskell wrapper for the Zulip API.
description:         This a Zulip API wrapper for Haskell.
homepage:            https://github.com/yamadapc/hzulip
license:             GPL-2
license-file:        LICENSE
author:              Pedro Tacla Yamada
maintainer:          tacla.yamada@gmail.com
copyright:           Pedro Tacla Yamada <tacla.yamada@gmail.com> 2014
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     HZulip
  other-modules:       HZulip.Types
  build-depends:       base >=4.7 && <4.8
                     , wreq >=0.2 && <0.3
                     , lens >=4.4 && <4.5
                     , aeson >=0.7 && <0.8
                     , bytestring >=0.10 && <0.11
                     , text >=1.1 &&<1.2
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite hzulip-spec
  type:                exitcode-stdio-1.0
  main-is:             Spec.hs
  hs-source-dirs:      src
                     , test
  build-depends:       base >=4.7 && <4.8
                     , wreq >=0.2 && <0.3
                     , lens >=4.4 && <4.5
                     , aeson >=0.7 && <0.8
                     , bytestring >=0.10 && <0.11

                     , hspec >=1.11 && <1.12
  default-language:    Haskell2010