I\'ve got a Python package with its setup.py having dependencies declared via the usual way, in install_requires=[...]. One of the packages there, scikits.timeseries, has a
You can add numpy to setup_requires section:
setup_requires=['numpy'],