Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot/examples/plugins/setup.py')
-rw-r--r--certbot/examples/plugins/setup.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/certbot/examples/plugins/setup.py b/certbot/examples/plugins/setup.py
new file mode 100644
index 000000000..ba2b5e4e2
--- /dev/null
+++ b/certbot/examples/plugins/setup.py
@@ -0,0 +1,16 @@
+from setuptools import setup
+
+setup(
+ name='certbot-example-plugins',
+ package='certbot_example_plugins.py',
+ install_requires=[
+ 'certbot',
+ 'zope.interface',
+ ],
+ entry_points={
+ 'certbot.plugins': [
+ 'example_authenticator = certbot_example_plugins:Authenticator',
+ 'example_installer = certbot_example_plugins:Installer',
+ ],
+ },
+)