An open API service indexing awesome lists of open source software.

https://github.com/ionelmc/pypi-alias

A small utility to make alias distributions on PyPI.
https://github.com/ionelmc/pypi-alias

Last synced: 3 months ago
JSON representation

A small utility to make alias distributions on PyPI.

Awesome Lists containing this project

README

          

========
Overview
========

.. start-badges

.. list-table::
:stub-columns: 1

* - tests
- | |travis| |requires|
|
* - package
- | |version| |wheel| |supported-versions| |supported-implementations|
| |commits-since|

.. |travis| image:: https://api.travis-ci.com/ionelmc/pypi-alias.svg?branch=master
:alt: Travis-CI Build Status
:target: https://travis-ci.com/github/ionelmc/pypi-alias

.. |requires| image:: https://requires.io/github/ionelmc/pypi-alias/requirements.svg?branch=master
:alt: Requirements Status
:target: https://requires.io/github/ionelmc/pypi-alias/requirements/?branch=master

.. |version| image:: https://img.shields.io/pypi/v/pypi-alias.svg
:alt: PyPI Package latest release
:target: https://pypi.org/project/pypi-alias

.. |wheel| image:: https://img.shields.io/pypi/wheel/pypi-alias.svg
:alt: PyPI Wheel
:target: https://pypi.org/project/pypi-alias

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pypi-alias.svg
:alt: Supported versions
:target: https://pypi.org/project/pypi-alias

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/pypi-alias.svg
:alt: Supported implementations
:target: https://pypi.org/project/pypi-alias

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/pypi-alias/v1.0.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/pypi-alias/compare/v0.2.0...master

.. end-badges

A small utility to make alias distributions on PyPI.

It will create an "empty" package with a different name (the "alias") that depends on the package in your current working directory.

* Free software: BSD 2-Clause License

Installation
============

::

pip install pypi-alias

You can also install the in-development version with::

pip install https://github.com/ionelmc/pypi-alias/archive/master.zip

Usage
=====

Make sure you run ``pypi-alias`` in a directory that has a ``setup.py`` file.

Example::

pypi-alias foobar sdist bdist_wheel
twine upload dist\foobar*

Documentation
=============

To use the project:

.. code-block:: python

import pypi_alias
pypi_alias.-()

Development
===========

To run all the tests run::

tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
:widths: 10 90
:stub-columns: 1

- - Windows
- ::

set PYTEST_ADDOPTS=--cov-append
tox

- - Other
- ::

PYTEST_ADDOPTS=--cov-append tox