summaryrefslogtreecommitdiff
path: root/docs/userguide/entry_point.rst
diff options
context:
space:
mode:
authorSaniya Maheshwari <saniya.mah@gmail.com>2022-06-11 14:39:12 +0530
committerSaniya Maheshwari <saniya.mah@gmail.com>2022-06-11 14:40:07 +0530
commited31831f6ed886dc8d75f2a8e6a3a800e8682e00 (patch)
tree5ce075513a50a9b74fd37ac5c835a0f0349565e3 /docs/userguide/entry_point.rst
parent209373e238adc9c5cdab1ee7c0c8ecd43ae3c61b (diff)
downloadpython-setuptools-git-ed31831f6ed886dc8d75f2a8e6a3a800e8682e00.tar.gz
Changed the last paragraph of the old example into a summary statement
Diffstat (limited to 'docs/userguide/entry_point.rst')
-rw-r--r--docs/userguide/entry_point.rst11
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst
index 478314b5..cb3453d4 100644
--- a/docs/userguide/entry_point.rst
+++ b/docs/userguide/entry_point.rst
@@ -477,10 +477,15 @@ with ``importlib_metadata``, i.e.
from importlib_metadata import entry_points
...
-The project soliciting the entry points needs not to have any dependency
-or prior knowledge about the libraries implementing the entry points, and
+Summary
+-------
+
+In summary, entry points allow a package to open its functionalities for
+customization via plugins.
+The package soliciting the entry points need not have any dependency
+or prior knowledge about the plugins implementing the entry points, and
downstream users are able to compose functionality by pulling together
-libraries implementing the entry points.
+plugins implementing the entry points.
Dependency Management