How could I make my setup.py pre-delete and post-delete the build directory?
|
1
|
|
|
|
|
|
For pre-deletion, just delete it with 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. |
||
|
|
|
|
Does this answer it? IIRC, you'll need to use the
|
||
|
|
