I have a directory containing N
subdirectories each of which contains setup.py
file. I want to write a python script that iterates through all subdirectories, issues python setup.py bdist_egg --dist-dir=somedir
, and finally removes build
and *.egg-info
from each subdirectory and I have two questions:
bdist_egg
without using os.system
? Some python interface would be nicer.bdist_egg
not to generate build
and *.egg-info
or is there any complementary command for setup.py
that cleans this for me?It turned out that Fabric is the right way!