Name:                MailchimpSimple
Version:             0.2.0.0
Synopsis:            Haskell library to interact with Mailchimp JSON API Version 3.0
Description:         This package contains the basic functions supported by Mailchimp JSON API. For HTTP Authentication, it uses Basic HTTP Authentication. 
Homepage:            https://github.com/Dananji/MailchimpSimple
License:             BSD3
License-file:        LICENSE
Author:              Dananji
Maintainer:          dan9131@gmail.com          
Category:            Web
Build-type:          Simple
Extra-source-files:  README.md
Cabal-version:       >=1.10

library
  exposed-modules:     MailchimpSimple, Utils.Types, Utils.Logger
  -- other-modules:       
  other-extensions:    OverloadedStrings, DeriveGeneric
  build-depends:       base >=4.8 && <4.9
                     , http-conduit >=2.1
                     , http-types >=0.9
                     , transformers >=0.4
                     , safe >=0.3
                     , lens >=4.13
                     , filepath >=1.4
                     , bytestring >=0.10
                     , base16-bytestring >=0.1
                     , text >=1.2
                     , aeson >=0.11
                     , aeson-lens >=0.5
                     , vector >=0.11
                     , cryptohash >=0.11
                     , time >=1.5
                     , directory >=1.2
  hs-source-dirs:      src
  default-language:    Haskell2010
  
Source-repository head
  type:              git
  location:          https://github.com/Dananji/MailchimpSimple