Metadata-Version: 1.2
Name: pypi-alias
Version: 1.0.0
Summary: A small utility to make alias distributions on PyPI.
Home-page: https://github.com/ionelmc/pypi-alias
Author: Ionel Cristian Mărieș
Author-email: contact@ionelmc.ro
License: BSD-2-Clause
Project-URL: Changelog, https://github.com/ionelmc/pypi-alias/blob/master/CHANGELOG.rst
Project-URL: Issue Tracker, https://github.com/ionelmc/pypi-alias/issues
Description: ========
        Overview
        ========
        
        
        
        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
        
        
        Changelog
        =========
        
        1.0.0 (2021-04-08)
        ------------------
        
        * Added support for Python 3.
          Contributed by Emil Stenström in `#5 <https://github.com/ionelmc/pypi-alias/pull/5>`_.
        * Dropped support for Python 2.
        * Switched to argparse and added the ``--version`` and ``--dirty`` arguments.
        * Added some light CI/testing.
        
        0.2.0 (2015-06-18)
        ------------------
        
        * Fix regression in ``__main__``.
        
        0.1.0 (2015-06-18)
        ------------------
        
        * First release on PyPI.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=3.6
