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:
parent
3b0a393c27
commit
a2602c812c
1
setup.py
1
setup.py
@ -29,6 +29,7 @@ setup(
|
|||||||
extras_require = {
|
extras_require = {
|
||||||
':python_version<"2.7"': ['ordereddict'],
|
':python_version<"2.7"': ['ordereddict'],
|
||||||
},
|
},
|
||||||
|
setup_requires = ["setuptools>=17.1"],
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
|
Loading…
Reference in New Issue
Block a user