summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2018-05-26 16:02:40 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2018-07-17 15:02:49 +0300
commit8869e34f8dc112272efcd6d3d54a1c981809c90c (patch)
tree359816e5a24047fc9496d4da7aeb8d75723dbe38
parent70ff4db98ae6a534bc04a59f28d5a29ac4c80e84 (diff)
downloadwheel-git-8869e34f8dc112272efcd6d3d54a1c981809c90c.tar.gz
Moved links to setup.py and added a note about the lack of of public API
-rw-r--r--README.rst13
-rw-r--r--setup.py5
2 files changed, 7 insertions, 11 deletions
diff --git a/README.rst b/README.rst
index 0a3fac7..dc3e3d9 100644
--- a/README.rst
+++ b/README.rst
@@ -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/
diff --git a/setup.py b/setup.py
index f6a6b5e..052b367 100644
--- a/setup.py
+++ b/setup.py
@@ -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(),