In my setup.py
I have a dependency for numpy
(in install_requires
).
Is it possible to instrument the setup
function to use wheel packages rather then source ones and not compile the whole numpy?
Note:
When I do pip install numpy
it downloads the binary package of numpy. However python setup.py install
gets the source package.