Any body encounter this warning when execute "Python setup.py" of a pypi package?
'install_requires' defines what this package requires. A lot of pypi packages have this option. How can it be an "Unknown distribution option"?
|
|
|
|
|||||||||
|
|
I have just ran into this problem when trying to build/install ansible. The problem seems to be that distutils really doesn't support install_requires. Setuptools should monkey-patch distutils on-the-fly, but it doesn't, probably because the last release of setuptools is 0.6c11 from 2009, whereas distutils is a core Python project. So even after manually installing the setuptools-0.6c11-py2.7.egg running setup.py only picks up distutils dist.py, and not the one from site-packages/setuptools/. Also the setuptools documentation hints to using ez_setup and not distutils, so it could be that most PyPI packages are simply wrong. |
|||
|
|
|
This is a warning from distutils, and is a sign that you do not have setuptools installed. Installing it from http://pypi.python.org/pypi/setuptools will remove the warning. |
|||||||||||||
|