diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-12-06 12:10:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 12:10:34 -0500 |
commit | 43f76003c60d88bf9ff87cd39ae748bfb770234b (patch) | |
tree | cef72b518000bc3f1424195b6acb29ec27c09d55 | |
parent | 2065f85d08035e44520e7e68d684b78c19c0eb25 (diff) | |
parent | b20d12e1fb7132fada3e6b58ec1c1c0bd409c5f7 (diff) | |
download | python-setuptools-git-43f76003c60d88bf9ff87cd39ae748bfb770234b.tar.gz |
Merge pull request #2460 from HaraldKorneliussen/master
Fixes syntax issues in quickstart (#2448)
-rw-r--r-- | docs/userguide/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/quickstart.rst b/docs/userguide/quickstart.rst index fdf5a3f0..30989826 100644 --- a/docs/userguide/quickstart.rst +++ b/docs/userguide/quickstart.rst @@ -63,7 +63,7 @@ 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 the installer:: - python -m pep517.build + python -m pep517.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! |