Metadata-Version: 1.1
Name: s3publish
Version: 0.0.1
Summary: Publish a folder of html to AWS S3
Home-page: https://github.com/jeffroche/s3p
Author: Jeff Roche
Author-email: jeff.roche@gmail.com
License: MIT
Description: S3P: Easily Publish Static HTML to S3
        =====================================
        
        S3P is a library for publishing a local folder containing a build of a static website, to S3.
        
        
        Installation
        ------------
        
        The recommended installation method is pip::
        
            pip install s3p
        
        
        Quickstart
        ----------
        
        Create a bucket on S3 through the AWS console, if you don't have one already and `configure it for website hosting <https://docs.aws.amazon.com/AmazonS3/latest/dev/HowDoIWebsiteConfiguration.html>`_.
        
        Publish your build folder to the S3 bucket:
        
        .. code:: python
        
            import s3p
            publisher = s3p.Publisher('mybucket', 'path/to/folder')
            publisher.publish()
        
        
        Acknowledgements
        ----------------
        
        Most of S3P was built off of ``spenczar``'s lektor-s3 `library <https://github.com/spenczar/lektor-s3>`_.
Keywords: s3 static website
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
