Whenever I run tox, my repository's directory gets trashed with .egg directories. These are obviously the required dependencies for my library which needs to install in each of the virtual environments, but I don't want to see them. I'm not sure why they don't go under the .tox directory...
I haven't seen any tips on this around the 'net, so my questions are:
- Is there a way to prevent these directories from showing up in the first place?
- If not, is there an easy (automated) way to clean up all of those directories after running tox?
Here is an example of one of my Python libraries that has this problem: https://github.com/joshvillbrandt/goprohero
Thanks for your help!