distutils + mercurial good practice question

Steven D'Aprano steve+comp.lang.python at pearwood.info
Wed Feb 22 19:52:50 EST 2012


distutils generates a number of files automatically in my projects, 
including MANIFEST, build/* and dist/* 

Is there any reason why I would want or need to track them in mercurial?

I currently have this .hgignore file:

syntax: glob
*.pyc
*~
exclude/*
build/*
dist/*
MANIFEST


Good practice or bad practice?


-- 
Steven



More information about the Python-list mailing list