将post-clean命令添加到python setup.py

时间:2015-01-19 04:48:57

标签: python hook setuptools

通过在线资源,我了解到以下内容将添加"安装后"钩子如果包含在setup.py中:

from  setuptools  import  setup
from  setuptools.command.install  import  install  as  _install
class  install(_install):
     def  run(self):
         _install.run(self)
         # Do something magical
setup(cmdclass={'install': install})

但是,我想做的是在执行setup.py clean后创建等效行为。具体来说,我希望setup.py clean删除在执行.egg-INFO期间创建的setup.py egg_info目录。

0 个答案:

没有答案