Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit a2eb8df

Browse files
quickstart: recommend PyPA build instead of pep517.build
see pypa/pyproject-hooks#91
1 parent c121d28 commit a2eb8df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/userguide/quickstart.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ This is what your project would look like::
5959
setup.cfg
6060
mypackage/__init__.py
6161

62-
Then, you need an installer, such as `pep517 <https://pypi.org/project/pep517/>`_
63-
which you can obtain via ``pip install pep517``. After downloading it, invoke
62+
Then, you need an installer, such as `PyPA build <https://pypa-build.readthedocs.io/en/latest/>`_
63+
which you can obtain via ``pip install build``. After downloading it, invoke
6464
the installer::
6565

66-
python -m pep517.build .
66+
python -m build
6767

6868
You now have your distribution ready (e.g. a ``tar.gz`` file and a ``.whl``
6969
file in the ``dist`` directory), which you can upload to PyPI!

0 commit comments

Comments
 (0)