Put the minimum dep version in Google DNS setup.py (#5002)

This commit is contained in:
Brad Warren 2017-08-07 17:12:58 -07:00 committed by GitHub
parent 0ac21e47c7
commit f31cb5f812

View file

@ -10,9 +10,11 @@ version = '0.18.0.dev0'
install_requires = [
'acme=={0}'.format(version),
'certbot=={0}'.format(version),
'google-api-python-client',
# 1.5 is the first version that supports oauth2client>=2.0
'google-api-python-client>=1.5',
'mock',
'oauth2client',
# for oauth2client.service_account.ServiceAccountCredentials
'oauth2client>=2.0',
# For pkg_resources. >=1.0 so pip resolves it to a version cryptography
# will tolerate; see #2599:
'setuptools>=1.0',