Metadata-Version: 2.1
Name: pip-custom-platform
Version: 0.5.0
Summary: pip + wheel wrapper which allows you to choose a custom platform name for building, downloading, and installing wheels.
Home-page: https://github.com/asottile/pip-custom-platform
Author: Anthony Sottile
Author-email: asottile@umich.edu
License: MIT
Description: [![Build Status](https://travis-ci.org/asottile/pip-custom-platform.svg?branch=master)](https://travis-ci.org/asottile/pip-custom-platform)
        [![Coverage Status](https://img.shields.io/coveralls/asottile/pip-custom-platform.svg?branch=master)](https://coveralls.io/r/asottile/pip-custom-platform)
        
        pip-custom-platform
        ===================
        
        [pip][pip]+[wheel][wheel] wrapper which allows you to choose a custom platform
        name for building, downloading, and installing wheels.
        
        This package assumes you're running your own PyPI server and would like
        support for wheels on named platforms that would otherwise be considered
        equivalent by the wheel infrastructure (for example not all linux_x86_64 are
        created equal).
        
        ## Default platform names
        
        By default, pip-custom-platform guesses a platform name for you based on the
        `distro` module for Linux, and uses the default platform name on Windows, OS
        X, or other systems. Some examples:
        
        | Platform                | Default Platform Name      |
        |-------------------------|----------------------------|
        | Ubuntu Trusty (14.04)   | linux_ubuntu_14_04_x86_64  |
        | Debian Jessie (8)       | linux_debian_8_x86_64      |
        | CentOS 7                | linux_centos_7_x86_64      |
        | Fedora 22               | linux_fedora_22_x86_64     |
        | Red Hat 7               | linux_rhel_7_x86_64        |
        | openSUSE 13.2           | linux_opensuse_13_x86_64   |
        
        You can choose your own platform name by passing `--platform my_platform` on
        the command line.
        
        ## Installation
        
        `pip install pip-custom-platform`
        
        ## Usage
        
        ### Building wheels
        
        `pip-custom-platform wheel --platform my-platform my-package`
        
        ### Downloading distributions
        
        `pip-custom-platform install --platform my-platform --download . my-package`
        
        (or with sufficiently new pip)
        
        `pip-custom-platform download --platform my-platform --dest . my-package`
        
        ### Installing packages
        
        `pip-custom-platform install --platform my-platform my-package`
        
        
        [pip]: https://github.com/pypa/pip
        [wheel]: https://bitbucket.org/pypa/wheel
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
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 :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7
Description-Content-Type: text/markdown
