I have setup.py that looks a bit (good, for sure):
It installs the package perfectly when launched with ./setup.py install . However, it does this regardless of whether the "sonLib" package is installed, ignoring the dependency.
Is this the expected behavior? Should setup.py install go blithely if the dependencies are not installed, leaving it to the pip or something else to install them in advance? If not, and setup.py install should fail if there are no dependencies, what am I doing wrong?
EDIT : information about some versions:
Python 2.7.2 (default, Jan 19 2012, 21:40:50) [GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import setuptools >>> setuptools.__version__ '0.6c12' >>>
source share