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-04 12:26:04 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-10-04 12:26:04 +0300
commit5d54871ca2fae2b293f420492354a242726ba8ce (patch)
tree4ea49527ce20459cff2428f3e3055e4070e584ed /setup.py
parent8c7b8b835117fe5cca92367d9244c4dd480c4ec6 (diff)
parent74b2e3bc515b5f7e805883a26f1b0e47ed686098 (diff)
Merge remote-tracking branch 'github/letsencrypt/master' into simplefs
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index bd954a5d6..a4897aadb 100644
--- a/setup.py
+++ b/setup.py
@@ -41,6 +41,8 @@ install_requires = [
'pyrfc3339',
'python2-pythondialog>=3.2.2rc1', # Debian squeeze support, cf. #280
'pytz',
+ 'requests',
+ 'setuptools', # pkg_resources
'zope.component',
'zope.interface',
]
@@ -67,6 +69,7 @@ testing_extras = [
'coverage',
'nose',
'nosexcover',
+ 'pep8',
'tox',
]
@@ -86,7 +89,6 @@ setup(
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
@@ -115,8 +117,7 @@ setup(
'letsencrypt-renewer = letsencrypt.renewer:main',
],
'letsencrypt.plugins': [
- 'manual = letsencrypt.plugins.manual:ManualAuthenticator',
- # TODO: null should probably not be presented to the user
+ 'manual = letsencrypt.plugins.manual:Authenticator',
'null = letsencrypt.plugins.null:Installer',
'simplefs = letsencrypt.plugins.simplefs:Authenticator',
'standalone = letsencrypt.plugins.standalone.authenticator'