need setuptools for PEP440 identifiers

(needs fixup, probably, just depending on latest setuptools)
This commit is contained in:
meejah 2018-03-12 16:43:09 -06:00 committed by Brian Warner
parent 6f20dbc9a3
commit 544f87a318

View File

@ -20,7 +20,7 @@ install_requires = [
# need pkg_resources . We use >=11.3 here because that's what # need pkg_resources . We use >=11.3 here because that's what
# "cryptography" requires (which is a sub-dependency of TLS-using # "cryptography" requires (which is a sub-dependency of TLS-using
# packages), so there's no point in requiring less. # packages), so there's no point in requiring less.
"setuptools >= 11.3", "setuptools >= 28.8.0",
"zfec >= 1.1.0", "zfec >= 1.1.0",
@ -150,7 +150,9 @@ import sys
if not hasattr(sys, 'frozen'): if not hasattr(sys, 'frozen'):
package_imports.append(('setuptools', 'setuptools')) package_imports.append(('setuptools', 'setuptools'))
setup_requires = [] setup_requires = [
'setuptools >= 28.8.0', # for PEP-440 style versions
]
# These are suppressed globally: # These are suppressed globally: