diff options
| author | Alex Grönholm <alex.gronholm@nextday.fi> | 2018-05-26 16:02:40 +0300 |
|---|---|---|
| committer | Alex Grönholm <alex.gronholm@nextday.fi> | 2018-07-17 15:02:49 +0300 |
| commit | 8869e34f8dc112272efcd6d3d54a1c981809c90c (patch) | |
| tree | 359816e5a24047fc9496d4da7aeb8d75723dbe38 | |
| parent | 70ff4db98ae6a534bc04a59f28d5a29ac4c80e84 (diff) | |
| download | wheel-git-8869e34f8dc112272efcd6d3d54a1c981809c90c.tar.gz | |
Moved links to setup.py and added a note about the lack of of public API
| -rw-r--r-- | README.rst | 13 | ||||
| -rw-r--r-- | setup.py | 5 |
2 files changed, 7 insertions, 11 deletions
@@ -10,17 +10,8 @@ It has two different roles: ``bdist_wheel`` setuptools command #. A command line tool for working with wheel files -Links: - -* `Installation <http://wheel.readthedocs.io/en/stable/installing.html>`_ -* `Documentation <http://wheel.readthedocs.io/>`_ -* `Changelog <http://wheel.readthedocs.io/en/stable/news.html>`_ -* `GitHub Page <https://github.com/pypa/wheel>`_ -* `Issue Tracking <https://github.com/pypa/wheel/issues>`_ -* `User mailing list <http://groups.google.com/group/python-virtualenv>`_ -* `Dev mailing list <http://groups.google.com/group/pypa-dev>`_ -* User IRC: #pypa on Freenode -* Dev IRC: #pypa-dev on Freenode +It should be noted that wheel is **not** intended to be used as a library, and +as such there is no stable, public API. .. _PEP 427: https://www.python.org/dev/peps/pep-0427/ .. _setuptools: https://pypi.org/project/setuptools/ @@ -33,6 +33,11 @@ setup(name='wheel', maintainer=u'Alex Grönholm', maintainer_email='alex.gronholm@nextday.fi', url='https://github.com/pypa/wheel', + project_urls={ + 'Documentation': 'https://wheel.readthedocs.io/', + 'Changelog': 'https://wheel.readthedocs.io/en/stable/news.html', + 'Issue Tracker': 'https://github.com/pypa/wheel/issues' + }, keywords=['wheel', 'packaging'], license='MIT', packages=find_packages(), |
