Explicit dependency on setuptools (pkg_resources).

This commit is contained in:
Jakub Warmuz
2015-09-26 10:52:28 +00:00
parent 5cc9061413
commit 08c0c4aeba
5 changed files with 7 additions and 1 deletions
+1
View File
@@ -16,6 +16,7 @@ install_requires = [
'pyrfc3339', 'pyrfc3339',
'pytz', 'pytz',
'requests', 'requests',
'setuptools', # pkg_resources
'six', 'six',
'werkzeug', 'werkzeug',
] ]
+1
View File
@@ -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',
] ]
+1
View File
@@ -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',
] ]
+3 -1
View File
@@ -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:
+1
View File
@@ -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',
] ]