Fix #21: setup_requires setuptools 17.1

That is the release that < in markers started working.

This still gives a poor user experience when an older setuptools is
installed, but at least folk reading setup.py will see the version
they need.
This commit is contained in:
Robert Collins 2016-04-26 10:02:17 +12:00
parent 3b0a393c27
commit a2602c812c
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ setup(
extras_require = {
':python_version<"2.7"': ['ordereddict'],
},
setup_requires = ["setuptools>=17.1"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',