mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
Explicit dependency on setuptools (pkg_resources).
This commit is contained in:
parent
5cc9061413
commit
08c0c4aeba
5 changed files with 7 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -42,6 +42,7 @@ install_requires = [
|
|||
'python2-pythondialog>=3.2.2rc1', # Debian squeeze support, cf. #280
|
||||
'pytz',
|
||||
'requests',
|
||||
'setuptools',
|
||||
'zope.component',
|
||||
'zope.interface',
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue