Metadata-Version: 1.1
Name: pypi-server
Version: 0.3.30
Summary: Tornado PyPi server
Home-page: https://github.com/mosquito/pypi-server/
Author: Dmitry Orlov <me@mosquito.su>
Author-email: me@mosquito.su
License: MIT
Description: PYPI Server
        ===========
        
        .. image:: https://travis-ci.org/mosquito/pypi-server.svg?branch=master
            :target: https://travis-ci.org/mosquito/pypi-server
        
        .. image:: https://img.shields.io/pypi/v/pypi-server.svg
            :target: https://pypi.python.org/pypi/pypi-server/
            :alt: Latest Version
        
        .. image:: https://img.shields.io/pypi/wheel/pypi-server.svg
            :target: https://pypi.python.org/pypi/pypi-server/
        
        .. image:: https://img.shields.io/pypi/pyversions/pypi-server.svg
            :target: https://pypi.python.org/pypi/pypi-server/
        
        .. image:: https://img.shields.io/pypi/l/pypi-server.svg
            :target: https://pypi.python.org/pypi/pypi-server/
        
        Fast asynchronous pypi server implementation.
        
        What is this?
        -------------
        
        pypi.python.org - is a global package repository of the python packages. This package is a self-hosted pypi service with caching functionallity from the global pypi.
        
        HTTP proxy can't works with XML-RPC of pypi.python.org.
        
        Screenshots
        -----------
        
        .. image:: screenshots/packages.png?raw=true
           :scale: 50 %
        
        .. image:: screenshots/users.png?raw=true
           :scale: 50 %
        
        .. image:: screenshots/create_user.png?raw=true
           :scale: 50 %
        
        
        Features
        --------
        
        Supports right now:
        
        * Caching packages from global-pypi
        * Serving own packages (registering and updating)
        * Password authentication for registering and uploading
        * Supported Databases:
            * Postgresql
            * Mysql (mariadb)
            * sqlite3 (default)
        
        
        Installation
        ------------
        
        First prepare you system.
        
        Centos:
        
        .. code-block:: bash
        
            # Install compillers
            yum groupinstall -y "Development tools"
        
            # Install dependency headers
            yum install -y python-pip python-devel libxml2-devel libxslt-devel libffi-devel
        
            # Install the database library headers (if you use postgresql)
            yum install -y libpqxx-devel
        
        
        Debian (Ubuntu):
        
        .. code-block:: bash
        
            # Install compillers
            apt-get install -y build-essential
            apt-get install -y python-dev python-pip libxml2-dev libxslt-dev libffi-dev
            apt-get install -y libpq-dev
        
        
        
        Install pypi-server:
        
        .. code-block:: bash
        
            pip install pypi-server
        
        
        If you want to support postgres or mysql database:
        
        .. code-block:: bash
        
            pip install 'pypi-server[postgres]' # or 'pypi-server[mysql]'
        
        
Platform: all
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: System
Classifier: Topic :: System :: Software Distribution
