Metadata-Version: 1.1
Name: pypicloud
Version: 0.2.2
Summary: Private PyPI backed by S3
Home-page: http://pypicloud.readthedocs.org/
Author: Steven Arcangeli
Author-email: stevearc@stevearc.com
License: MIT
Description: PyPI Cloud
        ==========
        :Build: |build|_ |coverage|_
        :Documentation: http://pypicloud.readthedocs.org/
        :Downloads: http://pypi.python.org/pypi/pypicloud
        :Source: https://github.com/mathcamp/pypicloud
        
        .. |build| image:: https://travis-ci.org/mathcamp/pypicloud.png?branch=master
        .. _build: https://travis-ci.org/mathcamp/pypicloud
        .. |coverage| image:: https://coveralls.io/repos/mathcamp/pypicloud/badge.png?branch=master
        .. _coverage: https://coveralls.io/r/mathcamp/pypicloud?branch=master
        
        This package is a Pyramid app that runs a simple PyPI server where all the
        packages are stored on Amazon's Simple Storage Service (S3).
        
        `LIVE DEMO <http://pypi.stevearc.com>`_
        
        Quick Start
        ===========
        For more detailed step-by-step instructions, check out the `getting started
        <http://pypicloud.readthedocs.org/en/latest/topics/getting_started.html>`_
        section of the docs.
        
        ::
        
            virtualenv mypypi
            source mypypi/bin/activate
            pip install pypicloud waitress
            pypicloud-make-config -t server.ini
            pserve server.ini
        
        It's running! Go to http://localhost:6543/ to view the web interface.
        
        
        Changelog
        =========
        If you are upgrading an existing installation, read the instructions
        
        0.2.2
        -----
        * Bug fix: Security bug in user auth 
        * Bug fix: Package caching from pypi was slightly broken 
        * Bug fix: ``ppc-migrate`` works when migrating to the same storage type 
        
        0.2.1
        -----
        * Bug fix: Pre-existing S3 download links were broken by 0.2.0 
        
        0.2.0
        -----
        **Upgrade breaks**: caching database
        
        * Bug fix: Timestamp display on web interface 
        * Bug fix: User registration stores password as plaintext 
        * Feature: ``ppc-migrate``, command to move packages between storage backends 
        * Feature: Adding support for more than one package with the same version. Now you can upload wheels! 
        * Feature: Allow transparently downloading and caching packages from pypi 
        * Feature: Export/Import access-control data via ``ppc-export`` and ``ppc-import`` 
        * Feature: Can set default read/write permissions for packages 
        * Feature: New cache backend: DynamoDB 
        * Hosting all js & css ourselves (no more CDN links) 
        * Obligatory miscellaneous refactoring
        
        0.1.0
        -----
        * First public release
        
Keywords: pypi s3 cheeseshop package
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pyramid
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: System :: Systems Administration
