summaryrefslogtreecommitdiff
path: root/doc/source/contributor
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2020-10-22 09:52:57 +0100
committerStephen Finucane <sfinucan@redhat.com>2020-10-22 09:52:57 +0100
commit5f650853f7908bc04555ea3ee393798502b79fed (patch)
tree8945901a028ca589a1dd97cfdac2d6ddad07bc05 /doc/source/contributor
parent66f5fa18d46cf34a42a0f13cbd3c35d9379c6ff0 (diff)
downloadpython-openstackclient-5f650853f7908bc04555ea3ee393798502b79fed.tar.gz
Remove references to setuptools
Newer versions of cliff and stevedore use importlib rather than setuptools to work with entry points. Replace any references to "setuptools' entry points mechanism" with "Python's entry points mechanism". Change-Id: Iae36155685ee37ab5e38a0c173110a5ece33d05d Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'doc/source/contributor')
-rw-r--r--doc/source/contributor/command-wrappers.rst2
-rw-r--r--doc/source/contributor/plugins.rst5
2 files changed, 3 insertions, 4 deletions
diff --git a/doc/source/contributor/command-wrappers.rst b/doc/source/contributor/command-wrappers.rst
index 2a5d9223..cf4eece2 100644
--- a/doc/source/contributor/command-wrappers.rst
+++ b/doc/source/contributor/command-wrappers.rst
@@ -7,7 +7,7 @@ We do this with a message logged at WARNING level before any command output
is emitted.
OpenStackClient command classes are derived from the ``cliff`` classes.
-Cliff uses ``setuptools`` entry points for dispatching the parsed command
+Cliff uses Python's *entry points* mechanism for dispatching the parsed command
to the respective handler classes. This lends itself to modifying the
command execution at run-time.
diff --git a/doc/source/contributor/plugins.rst b/doc/source/contributor/plugins.rst
index 374b274e..7ea48edd 100644
--- a/doc/source/contributor/plugins.rst
+++ b/doc/source/contributor/plugins.rst
@@ -5,9 +5,8 @@ Plugins
=======
The OpenStackClient plugin system is designed so that the plugin need only be
-properly installed for OSC to find and use it. It utilizes the
-``setuptools`` entry points mechanism to advertise to OSC the
-plugin module and supported commands.
+properly installed for OSC to find and use it. It utilizes Python's *entry
+points* mechanism to advertise to OSC the plugin module and supported commands.
Adoption
========