summaryrefslogtreecommitdiff
path: root/docs/userguide/entry_point.rst
diff options
context:
space:
mode:
authorSaniya Maheshwari <saniya.mah@gmail.com>2022-06-11 22:20:16 +0530
committerSaniya Maheshwari <saniya.mah@gmail.com>2022-06-11 22:20:16 +0530
commitf7b18070cb80f5ab4cb3d5fa22eab2533fc215bc (patch)
tree55a12cbdefafc54afb72081fc57cec5c031a2835 /docs/userguide/entry_point.rst
parent7b6f14b4f7ddd86a69b1742c994b17dc5688bbc5 (diff)
downloadpython-setuptools-git-f7b18070cb80f5ab4cb3d5fa22eab2533fc215bc.tar.gz
Removed Dependency Management section of the Entry Points page
Since it is deprecated and relevant details have already been covered in a separate Dependencies Management page.
Diffstat (limited to 'docs/userguide/entry_point.rst')
-rw-r--r--docs/userguide/entry_point.rst23
1 files changed, 0 insertions, 23 deletions
diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst
index 601b6b6c..17063525 100644
--- a/docs/userguide/entry_point.rst
+++ b/docs/userguide/entry_point.rst
@@ -499,29 +499,6 @@ or prior knowledge about the plugins implementing the entry points, and
downstream users are able to compose functionality by pulling together
plugins implementing the entry points.
-
-Dependency Management
-=====================
-
-Some entry points may require additional dependencies to properly function.
-For such an entry point, declare in square brackets any number of dependency
-``extras`` following the entry point definition. Such entry points will only
-be viable if their extras were declared and installed. See the
-:doc:`guide on dependencies management <dependency_management>` for
-more information on defining extra requirements. Consider from the
-above example:
-
-.. code-block:: ini
-
- [options.entry_points]
- console_scripts =
- hello-world = timmins:hello_world [pretty-printer]
-
-In this case, the ``hello-world`` script is only viable if the ``pretty-printer``
-extra is indicated, and so a plugin host might exclude that entry point
-(i.e. not install a console script) if the relevant extra dependencies are not
-installed.
-
----
.. [#experimental]