ref: cb89e51eaf7b7857d1f849fcb539a26ad51e9126
parent: b3c2d33f247f6f4b873b7c8a4b15ffa99fdd9d2c
author: Paul Brossier <piem@piem.org>
date: Tue May 10 16:07:21 EDT 2016
python/lib/moresetuptools.py: simplify imports
--- a/python/lib/moresetuptools.py
+++ b/python/lib/moresetuptools.py
@@ -1,11 +1,8 @@
-import distutils, os, subprocess
-import setuptools.command.build_py
-import distutils.command.clean
-from distutils.dir_util import remove_tree
+import distutils, distutils.command.clean, distutils.dir_util
class CleanGenerated(distutils.command.clean.clean):
def run(self):
- remove_tree('gen')
+ distutils.dir_util.remove_tree('gen')
distutils.command.clean.clean.run(self)
class GenerateCommand(distutils.cmd.Command):