- Timestamp:
- May 10, 2016, 8:07:21 PM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 1827c498
- Parents:
- b3c2d33
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/moresetuptools.py
rb3c2d33 rcb89e51 1 import distutils, os, subprocess 2 import setuptools.command.build_py 3 import distutils.command.clean 4 from distutils.dir_util import remove_tree 1 import distutils, distutils.command.clean, distutils.dir_util 5 2 6 3 class CleanGenerated(distutils.command.clean.clean): 7 4 def run(self): 8 remove_tree('gen')5 distutils.dir_util.remove_tree('gen') 9 6 distutils.command.clean.clean.run(self) 10 7
Note: See TracChangeset
for help on using the changeset viewer.