packages feed

hS3-0.4: hS3.cabal

Name:           hS3
Version:        0.4
License:        BSD3
License-file:   LICENSE
Cabal-Version: >= 1.2
Copyright: 
  Copyright (c) 2008, Greg Heartsfield
Author:         Greg Heartsfield <scsibug@imap.cc>
Maintainer:     Greg Heartsfield <scsibug@imap.cc>
Homepage:       http://gregheartsfield.com/repos/hS3/doc/
Category:       Network, Web
Stability:      Alpha
build-type:     Simple
Synopsis:       Interface to Amazon's Simple Storage Service (S3)
Description:    This is the Haskell S3 library.  It provides an
                interface to Amazon's Simple Storage Service (S3), allowing Haskell
                developers to reliably store and retrieve arbitrary amounts of
                data from anywhere on the Internet.
extra-source-files: README, Tests.hs,
                    examples/createBucket.hs
                    examples/deleteObject.hs
                    examples/listBuckets.hs
                    examples/sendObject.hs
                    examples/deleteBucket.hs
                    examples/getObject.hs
                    examples/listObjects.hs
                    examples/uploadFile.hs

Library

  Build-depends:  base, HTTP >= 4000.0.0, Crypto >= 4.1.0, hxt, network,
                regex-compat, old-time, random, old-locale, dataenc, utf8-string, bytestring

  Exposed-modules:
        Network.AWS.S3Object,
        Network.AWS.S3Bucket,
        Network.AWS.AWSResult,
        Network.AWS.AWSConnection,
        Network.AWS.Authentication,
        Network.AWS.ArrowUtils

Executable     hs3
  main-is:        hS3.hs