summaryrefslogtreecommitdiff
path: root/docs/userguide
diff options
context:
space:
mode:
authoralvyjudy <alvyjudy@gmail.com>2020-05-28 17:58:16 -0400
committeralvyjudy <alvyjudy@gmail.com>2020-05-28 17:58:16 -0400
commit89e852c476c4fad9849ac21562be5be836c5a9f6 (patch)
tree9cc58f80646eca702bf6bfe93baad6a223444f2a /docs/userguide
parent00888dd0d88a3463afd6e68ad85da515c194d63f (diff)
downloadpython-setuptools-git-89e852c476c4fad9849ac21562be5be836c5a9f6.tar.gz
docs: restored notes on "require()" function
Diffstat (limited to 'docs/userguide')
-rw-r--r--docs/userguide/dependency_management.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/userguide/dependency_management.txt b/docs/userguide/dependency_management.txt
index abde5503..ca2ac75a 100644
--- a/docs/userguide/dependency_management.txt
+++ b/docs/userguide/dependency_management.txt
@@ -83,6 +83,12 @@ that verify the availability of the specified dependencies at runtime, and
ensure that the correct versions are added to ``sys.path`` (e.g. if multiple
versions have been installed).
+.. note::
+ if you declare your dependencies in ``setup.py``, you do
+ *not* need to use the ``require()`` function in your scripts or modules, as
+ long as you either install the project or use ``setup.py develop`` to do
+ development work on it.
+
Platform specific dependencies
------------------------------