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:
authorJakub Warmuz <jakub@warmuz.org>2015-10-17 10:28:04 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-10-17 10:28:04 +0300
commit09fa1153d958b9fc74a070e879a4c955d3292730 (patch)
treea9541a97dbdd761caf685330bb151a81022bfa48 /setup.py
parent4c2d5dbdfc03e5ce2b8c2fd0ed77c4387cb6b60b (diff)
parent7fe8bbe446550e6e6ccbb71cf288235d16f66453 (diff)
Merge remote-tracking branch 'github/letsencrypt/master' into py2.6-3
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 9fb58752a..40c6ac16c 100644
--- a/setup.py
+++ b/setup.py
@@ -43,6 +43,7 @@ install_requires = [
'pytz',
'requests',
'setuptools', # pkg_resources
+ 'six',
'zope.component',
'zope.interface',
]
@@ -131,8 +132,8 @@ setup(
'letsencrypt.plugins': [
'manual = letsencrypt.plugins.manual:Authenticator',
'null = letsencrypt.plugins.null:Installer',
- 'standalone = letsencrypt.plugins.standalone.authenticator'
- ':StandaloneAuthenticator',
+ 'standalone = letsencrypt.plugins.standalone:Authenticator',
+ 'webroot = letsencrypt.plugins.webroot:Authenticator',
],
},
)