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