summaryrefslogtreecommitdiff
path: root/docs/userguide
diff options
context:
space:
mode:
authorAndrey Bienkowski <hexagonrecursion@gmail.com>2021-02-09 09:20:47 +0300
committerAndrey Bienkowski <hexagonrecursion@gmail.com>2021-02-09 09:20:47 +0300
commite70c2afc1868a7d9bb2e2887ebf19f6c84dcf283 (patch)
treec59cd31fddf98930e2192a62be4400d1653df089 /docs/userguide
parentc121d289da5d19cf6df2bf6b64ac28916a060161 (diff)
downloadpython-setuptools-git-e70c2afc1868a7d9bb2e2887ebf19f6c84dcf283.tar.gz
quickstart: recommend PyPA build instead of pep517.build
see https://github.com/pypa/pep517/issues/91
Diffstat (limited to 'docs/userguide')
-rw-r--r--docs/userguide/quickstart.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/userguide/quickstart.rst b/docs/userguide/quickstart.rst
index 1d557d47..e7594ba3 100644
--- a/docs/userguide/quickstart.rst
+++ b/docs/userguide/quickstart.rst
@@ -59,11 +59,11 @@ This is what your project would look like::
setup.cfg
mypackage/__init__.py
-Then, you need an installer, such as `pep517 <https://pypi.org/project/pep517/>`_
-which you can obtain via ``pip install pep517``. After downloading it, invoke
+Then, you need an installer, such as :std:doc:`PyPA build <pypa-build:index>`
+which you can obtain via ``pip install build``. After downloading it, invoke
the installer::
- python -m pep517.build .
+ python -m build
You now have your distribution ready (e.g. a ``tar.gz`` file and a ``.whl``
file in the ``dist`` directory), which you can upload to PyPI!