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.
- Host: GitHub
- URL: https://github.com/ionelmc/pypi-alias
- Owner: ionelmc
- License: bsd-2-clause
- Created: 2015-06-17T22:58:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-04-08T14:42:56.000Z (over 4 years ago)
- Last Synced: 2025-06-16T22:44:20.086Z (4 months ago)
- Language: Python
- Size: 22.5 KB
- Stars: 11
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
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