I&#39;m trying to create a package that provides a setuptool command that will compile idl files when you run python setup.py build or python setup.py install. <br><br>I&#39;ve figured out how to add an additional command (build_omniidl) which I can run with:
<br>&nbsp;&nbsp; python setup.py build_omniidl <br><br>But I&#39;m not sure how to wire it up so that <br>&nbsp; python setup.py build<br><br>automatically invokes build_omniidl for me. Basically I want build_omniidl to act just like build_python.
<br><br><br>Is this even possible with setuptools? If so anyone know where I can see an example?<br><br><br>