mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 00:00:44 +02:00
Explicit dependency on setuptools (pkg_resources).
This commit is contained in:
@@ -16,6 +16,7 @@ install_requires = [
|
||||
'pyrfc3339',
|
||||
'pytz',
|
||||
'requests',
|
||||
'setuptools', # pkg_resources
|
||||
'six',
|
||||
'werkzeug',
|
||||
]
|
||||
|
||||
@@ -7,6 +7,7 @@ install_requires = [
|
||||
'letsencrypt',
|
||||
'mock<1.1.0', # py26
|
||||
'python-augeas',
|
||||
'setuptools', # pkg_resources
|
||||
'zope.component',
|
||||
'zope.interface',
|
||||
]
|
||||
|
||||
@@ -8,6 +8,7 @@ install_requires = [
|
||||
'mock<1.1.0', # py26
|
||||
'PyOpenSSL',
|
||||
'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?
|
||||
'setuptools', # pkg_resources
|
||||
'zope.interface',
|
||||
]
|
||||
|
||||
|
||||
@@ -4,7 +4,9 @@ from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
||||
install_requires = []
|
||||
install_requires = [
|
||||
'setuptools', # pkg_resources
|
||||
]
|
||||
if sys.version_info < (2, 7):
|
||||
install_requires.append("mock<1.1.0")
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user