diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-04-03 13:26:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-03 13:26:58 -0400 |
commit | 1b5352eba8be211934ff60dc148b58d8706c8ce1 (patch) | |
tree | 4bb2b0d309a21aa4581a6db8c32f248e02d6c3e5 | |
parent | 6c35b7fecfab235218a9e5eb26c04dc6e46eb1cf (diff) | |
parent | c0b90dba0326d637ec44d2b67cb0fadcead1c640 (diff) | |
download | python-setuptools-git-1b5352eba8be211934ff60dc148b58d8706c8ce1.tar.gz |
Merge pull request #2623 from Zedeldi/patch-1
Update dependency_management.rst
-rw-r--r-- | docs/userguide/dependency_management.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/userguide/dependency_management.rst b/docs/userguide/dependency_management.rst index 6108d9b2..188083e0 100644 --- a/docs/userguide/dependency_management.rst +++ b/docs/userguide/dependency_management.rst @@ -3,7 +3,7 @@ Dependencies Management in Setuptools ===================================== There are three types of dependency styles offered by setuptools: -1) build system requirement, required dependency and 3) optional +1) build system requirement, 2) required dependency and 3) optional dependency. .. Note:: @@ -19,8 +19,8 @@ Build system requirement Package requirement ------------------- After organizing all the scripts and files and getting ready for packaging, -there needs to be a way to tell Python what programs it need to actually -do the packgaging (in our case, ``setuptools`` of course). Usually, +there needs to be a way to tell Python what programs it needs to actually +do the packaging (in our case, ``setuptools`` of course). Usually, you also need the ``wheel`` package as well since it is recommended that you upload a ``.whl`` file to PyPI alongside your ``.tar.gz`` file. Unlike the other two types of dependency keyword, this one is specified in your @@ -47,7 +47,7 @@ Declaring required dependency This is where a package declares its core dependencies, without which it won't be able to run. ``setuptools`` support automatically download and install these dependencies when the package is installed. Although there is more -finess to it, let's start with a simple example. +finesse to it, let's start with a simple example. .. tab:: setup.cfg |