[Distutils] Specify missing install-requires dependencies to develop egg?
Reinout van Rees
reinout at vanrees.org
Fri Aug 26 04:06:47 CEST 2011
On 26-08-11 03:06, Matthew Brett wrote:
> [mypy]
> recipe = zc.recipe.egg:script
> eggs =
> nibabel
> interpreter = py
>
...
>
> What we would very much like to do, is to be able to specify the
> missing install_requires for this package (and for others we are
> thinking of working with)
The solution is quite simple: just add numpy to the list of eggs like this:
[mypy]
recipe = zc.recipe.egg:script
eggs =
nibabel
numpy
interpreter = py
Reinout
--
Reinout van Rees http://reinout.vanrees.org/
reinout at vanrees.org http://www.nelen-schuurmans.nl/
"If you're not sure what to do, make something. -- Paul Graham"
More information about the Distutils-SIG
mailing list