Babel creates a setup.py file that can be used to build the
Python extension modules that you create. setup.py uses the
Python distutils package to build the Python extension modules. The
following are two extra command line arguments
The directory containing the SIDL runtime and Python headers
is normally specified with -include-dirs=. The
directory where libsidl.so is stored must also be specified.
The following is a hypothetical example
setup.py -include-dirs=/usr/local/include
-include-dirs=/usr/local/include/python
-library-dirs=/usr/local/lib build_ext -inplace
although any real installation is unlikely to actually use those settings.