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 'examples/plugins/setup.py')
-rw-r--r--examples/plugins/setup.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/examples/plugins/setup.py b/examples/plugins/setup.py
deleted file mode 100644
index 4538e83b8..000000000
--- a/examples/plugins/setup.py
+++ /dev/null
@@ -1,17 +0,0 @@
-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',
- ],
- },
-)