In order to stage python project within our corporation I need to make an installable distribution.
This should include:
- An egg or whl for my project
- An egg or whl for every dependency of the project
- (optionally) produce a requirements.txt file listing all the installable components for this release
Is there an easy plug in, (e.g. an alternative to bdist_wheel) that will not only compile one wheel but also that project's components?
Obviously I can script this, but I was hoping that there might be a short-cut that builds the package + dependencies in fewer steps.
This needs to work on Python 2.7 on Windows + Linux.