vote up 0 vote down star
1

How could I make my setup.py pre-delete and post-delete the build directory?

flag

65% accept rate

2 Answers

vote up 1 vote down check

For pre-deletion, just delete it with distutils.dir_util.remove_tree before calling setup.

For post-delete, I assume you only want to post-delete after selected commands. Subclass the respective command, override its run method (to invoke remove_tree after calling the base run), and pass the new command into the cmdclass dictionary of setup.

link|flag
vote up 1 vote down

Does this answer it? IIRC, you'll need to use the --all flag to get rid of stuff outside of build/lib:

setup.py clean --all
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.