Re: distutils: optionally build C bindings to an external library

2006-10-09 Thread Martin v. Löwis
Kirill Simonov schrieb: > I've written a pure Python module, which could optionally use an > external C library. The external library is not required to be on the > user computer however, so I'd like not to build the bindings by default, > but allow a user to turn the build on by specifying some pa

distutils: optionally build C bindings to an external library

2006-10-09 Thread Kirill Simonov
Hi, I've written a pure Python module, which could optionally use an external C library. The external library is not required to be on the user computer however, so I'd like not to build the bindings by default, but allow a user to turn the build on by specifying some parameter to `setup.py`. Basi