distutils options

Thomas Heller theller at python.net
Fri Jun 11 09:46:02 EDT 2004


Jacek Generowicz <jacek.generowicz at cern.ch> writes:

> The command "build_ext" has a --build-temp option.
>
> The command "install" calls the command "build_ext".
>
> The command "install" does not accept the --build-temp option.
>
> How can I specify --build-temp to "build_ext" when invoking the latter
> via "install" ?

python setup.py build_ext --build-temp install

Or write the following in your setup.cfg file:
[build_ext]
build_temp

Thomas





More information about the Python-list mailing list