Changeset cb89e51


Ignore:
Timestamp:
May 10, 2016, 8:07:21 PM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
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
Message:

python/lib/moresetuptools.py: simplify imports

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
     1import distutils, distutils.command.clean, distutils.dir_util
    52
    63class CleanGenerated(distutils.command.clean.clean):
    74    def run(self):
    8         remove_tree('gen')
     5        distutils.dir_util.remove_tree('gen')
    96        distutils.command.clean.clean.run(self)
    107
Note: See TracChangeset for help on using the changeset viewer.