packages feed

twhs-0.1.0.3: twhs.cabal

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

name:                twhs
version:             0.1.0.3
synopsis:            CLI twitter client.
description:         See <https://github.com/suzuki-shin/twhs/blob/master/README.md>
homepage:            https://github.com/suzuki-shin/twhs
license:             MIT
license-file:        LICENSE
author:              SUZUKI Shinichiro
maintainer:          shinichiro.su@gmail.com
-- copyright:           
category:            Web
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  ghc-options: -Wall
  exposed-modules:     Web.Twitter.Twhs
                     , Web.Twitter.Twhs.Common
                     , Web.Twitter.Twhs.Config
                     , Paths_twhs
  build-depends:       base >=4.6 && <4.7
                     , twitter-conduit
                     , authenticate-oauth >=1.4.0.8
                     , transformers
                     , resourcet
                     , monad-control
                     , monad-logger
                     , data-default
                     , bytestring
                     , text
                     , conduit
                     , http-conduit
                     , lens
                     , transformers-base
                     , case-insensitive
                     , containers
                     , network
                     , ansi-terminal
  default-language:    Haskell2010

executable twhs
  main-is:             main.hs
  -- other-extensions:    
  build-depends:       base >=4.6 && <4.7
                     , twitter-conduit
                     , authenticate-oauth >=1.4.0.8
                     , transformers
                     , resourcet
                     , monad-control
                     , monad-logger
                     , data-default
                     , bytestring
                     , text
                     , conduit
                     , http-conduit
                     , lens
                     , transformers-base
                     , case-insensitive
                     , containers
                     , network
                     , ansi-terminal
  -- hs-source-dirs:      
  default-language:    Haskell2010

test-suite spec
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  other-modules:        TwhsSpec
  hs-source-dirs:       test
  ghc-options:          -Wall
  main-is:              Spec.hs
  build-depends:        base
                      , hspec >= 1.3
                      , QuickCheck
                      , twhs