Metadata-Version: 1.1
Name: storage-provisioner
Version: 0.1.1
Summary: Provisions storage on pluggable backends, such as AWS S3.
Home-page: https://github.com/PerchLive/storage_provisioner
Author: Chris Ballinger, David Brodsky
Author-email: chrisballinger@gmail.com, dbro@dbro.pro
License: Apache License 2.0
Download-URL: https://github.com/PerchLive/storage_provisioner/tarball/0.1
Description: # [StorageProvisioner](https://github.com/PerchLive/storage_provisioner)
        
        [![Build Status](https://img.shields.io/travis/PerchLive/storage_provisioner.svg)](https://travis-ci.org/PerchLive/storage_provisioner) [![PyPI Page](https://img.shields.io/pypi/v/storage_provisioner.svg)](https://pypi.python.org/pypi/storage_provisioner) [![Coverage Status](https://img.shields.io/coveralls/PerchLive/storage_provisioner.svg)](https://coveralls.io/github/PerchLive/storage_provisioner?branch=master) [![Python Versions](https://img.shields.io/pypi/pyversions/storage_provisioner.svg)](https://pypi.python.org/pypi/storage_provisioner) [![Downloads per Day](https://img.shields.io/pypi/dd/storage_provisioner.svg)](https://pypi.python.org/pypi/storage_provisioner)
        
        Provisions storage on pluggable backends, such as AWS S3.
        
        ## Installation
        
            $ pip3 install storage_provisioner
            
        ## Dependencies
        
        * [Python 3.5](https://www.python.org/downloads/release/python-350/) - the future is now
        * [boto3](https://github.com/boto/boto3) - Amazon AWS library 
        
        ## Usage
        
        ```python
        import storage_provisioner
        ```
        
        ## Features
        
        * AWS S3 backend
        
        ## TODO
        
        * Local file storage backend
        * FTP backend
        * RTMP backend
        * Your backend?
        
        ## Testing
        
        Create a `secrets.py` file in the `tests/` directory:
        
        ```python
        AWS_ACCESS_KEY_ID = 'aws_key_id'
        AWS_SECRET_ACCESS_KEY = 'aws_secret_access_key'
        
        ```
        
        ## Authors
        
        * [Chris Ballinger](https://github.com/chrisballinger)
        * [David Brodsky](https://github.com/onlyinamerica)
        
        
        ## License
        
        Apache 2.0
        
        ```
        Copyright 2015 Perch Innovations, Inc.
        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at
        
            http://www.apache.org/licenses/LICENSE-2.0
        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
        ```
        
        
        
        History
        -------
        
        0.1.0 (2015-01-11)
        ---------------------
        
        * First release on PyPI.
        
Keywords: storage_provisioner,aws,boto
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
