summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-04-06 12:24:40 +0100
committerGitHub <noreply@github.com>2022-04-06 12:24:40 +0100
commitdb03453d7f71d1353d277e2cc90d3973a11ae533 (patch)
tree3ba7278645661ce4069db220bc20bbc379833bcd
parentb686a319a2938019039c73aecba714970f9d6f74 (diff)
parentf4af5afbbf1c7d26139e5348d2202d0ab923c9ac (diff)
downloadpython-setuptools-git-db03453d7f71d1353d277e2cc90d3973a11ae533.tar.gz
Merge pull request #3252 from mccalluc/patch-1
Small wording tweaks for readability
-rw-r--r--docs/userguide/dependency_management.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/userguide/dependency_management.rst b/docs/userguide/dependency_management.rst
index 279f794d..d15b45cb 100644
--- a/docs/userguide/dependency_management.rst
+++ b/docs/userguide/dependency_management.rst
@@ -43,7 +43,7 @@ other two types of dependency keyword, this one is specified in your
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
+be able to run. ``setuptools`` supports automatically downloading and installing
these dependencies when the package is installed. Although there is more
finesse to it, let's start with a simple example.
@@ -90,7 +90,7 @@ that verify the availability of the specified dependencies at runtime.
Platform specific dependencies
------------------------------
-Setuptools offer the capability to evaluate certain conditions before blindly
+Setuptools offers the capability to evaluate certain conditions before blindly
installing everything listed in ``install_requires``. This is great for platform
specific dependencies. For example, the ``enum`` package was added in Python
3.4, therefore, package that depends on it can elect to install it only when
@@ -250,9 +250,9 @@ distributions, if the package's dependencies aren't already installed:
Optional dependencies
=====================
Setuptools allows you to declare dependencies that only get installed under
-specific circumstances. These dependencies are specified with ``extras_require``
+specific circumstances. These dependencies are specified with the ``extras_require``
keyword and are only installed if another package depends on it (either
-directly or indirectly) This makes it convenient to declare dependencies for
+directly or indirectly). This makes it convenient to declare dependencies for
ancillary functions such as "tests" and "docs".
.. note::