diff options
Diffstat (limited to 'docs/userguide/entry_point.rst')
-rw-r--r-- | docs/userguide/entry_point.rst | 11 |
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 |