From c62137d449cf9c4d3471e9c38d741d24b4a23b31 Mon Sep 17 00:00:00 2001 From: Karanveer Plaha <7011511+karanveersp@users.noreply.github.com> Date: Fri, 13 Sep 2019 20:46:23 -0400 Subject: [PATCH] Added missing text to fix the sentence I added the word 'be' in the sentence, "It also must not already *be* taken on pypi.org." --- source/tutorials/packaging-projects.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorials/packaging-projects.rst b/source/tutorials/packaging-projects.rst index a2455205a..e027b7284 100644 --- a/source/tutorials/packaging-projects.rst +++ b/source/tutorials/packaging-projects.rst @@ -95,7 +95,7 @@ Open :file:`setup.py` and enter the following content. Update the package name t minimal set: - ``name`` is the *distribution name* of your package. This can be any name as long as only - contains letters, numbers, ``_`` , and ``-``. It also must not already + contains letters, numbers, ``_`` , and ``-``. It also must not already be taken on pypi.org. **Be sure to update this with your username,** as this ensures you won't try to upload a package with the same name as one which already exists when you upload the package. - ``version`` is the package version see :pep:`440` for more details on versions.