From 3f625d3a0d396326561af02dfeec922783aaa0e1 Mon Sep 17 00:00:00 2001 From: Zach Shepherd Date: Mon, 3 Apr 2017 14:51:48 -0700 Subject: [PATCH] docs: clarify the use of entry points for plugins The documentation did not list the entry point group, certbot.plugins. Partially addresses issue #4368. --- docs/contributing.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/contributing.rst b/docs/contributing.rst index f75f2516a..75a65fab7 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -220,9 +220,10 @@ Writing your own plugin ~~~~~~~~~~~~~~~~~~~~~~~ Certbot client supports dynamic discovery of plugins through the -`setuptools entry points`_. This way you can, for example, create a -custom implementation of `~certbot.interfaces.IAuthenticator` or -the `~certbot.interfaces.IInstaller` without having to merge it +`setuptools entry points`_ using the `certbot.plugins` group. This +way you can, for example, create a custom implementation of +`~certbot.interfaces.IAuthenticator` or the +`~certbot.interfaces.IInstaller` without having to merge it with the core upstream source code. An example is provided in ``examples/plugins/`` directory.