packages feed

digitalocean-kzs-0.1.0.3: digitalocean-kzs.cabal

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

-- The name of the package.
name:                digitalocean-kzs

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.3

-- A short (one-line) description of the package.
synopsis:            digitalocean api for haskell
description: DigitalOcean api for haskell
        
-- A longer description of the package.
-- description:         

-- URL for the project homepage or repository.
homepage:            https://github.com/KazumaSATO/digitalocean-kzs

-- The license under which the package is released.
license:             MIT

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Ryotaro NAKAMURA

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          r.nakamura1989@gmail.com

-- A copyright notice.
-- copyright:           

category:            Web

build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a 
-- README.
-- extra-source-files:  

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/KazumaSATO/digitalocean-kzs
                     
library
        
  -- Modules exported by the library.        
  exposed-modules:
                  DigitalOcean
                  DigitalOcean.Account
                  DigitalOcean.Base
                  DigitalOcean.Image
                  DigitalOcean.Droplet
                  DigitalOcean.Region
                  DigitalOcean.SSHKey
                  DigitalOcean.Size
                  DigitalOcean.NewDroplet
                  
  -- Modules included in this library but not exported.                  
  -- other-modules:
  
  -- LANGUAGE extensions used by modules in this package.  
  -- other-extensions:

  
  -- Other library packages from which modules are imported.
  build-depends:
                base >=4.8 && <4.9,
                aeson        >= 0.6  && < 0.9,
                text         >= 0.10 && < 2,
                bytestring   >= 0.10 && < 0.11,
                transformers >= 0.3  && < 0.5,
                HTTP         >= 4000 && < 4001,
                http-conduit >= 2.1  && < 2.2,
                http-types   >= 0.8.6
                
  -- Directories containing source files.
  hs-source-dirs:      src
  Ghc-Options:          -Wall
  -- Base language which the package is written in.  
  default-language:    Haskell2010

Test-Suite spec
  Type:                 exitcode-stdio-1.0
  Default-Language:     Haskell2010
  Hs-Source-Dirs:       test
  Ghc-Options:          -Wall
  Main-Is:              Spec.hs
  Other-Modules:        DigitalOceanSpec
  Build-Depends:        base
                      , hspec >= 1.3
                      , digitalocean-kzs

Test-Suite doctest
  Type:                 exitcode-stdio-1.0
  Default-Language:     Haskell2010
  HS-Source-Dirs:       test
  Ghc-Options:          -threaded -Wall
  Main-Is:              doctests.hs
  Build-Depends:        base
                      , doctest >= 0.9.3