don't cleanup egg-info after every setup.py command

would cause `setup.py css` or any other command 
to effectively uninstall a development install.
This commit is contained in:
Min RK 2014-12-12 16:31:34 -08:00
parent e51f3ff8d5
commit feee854217

View File

@ -83,21 +83,6 @@ from setupext import setupext
isfile = os.path.isfile
pjoin = os.path.join
#-----------------------------------------------------------------------------
# Function definitions
#-----------------------------------------------------------------------------
def cleanup():
"""Clean up the junk left around by the build process"""
if "develop" not in sys.argv and "egg_info" not in sys.argv:
try:
shutil.rmtree('ipython.egg-info')
except:
try:
os.unlink('ipython.egg-info')
except:
pass
#-------------------------------------------------------------------------------
# Handle OS specific things
#-------------------------------------------------------------------------------
@ -343,7 +328,6 @@ setup_args.update(setuptools_extra_args)
def main():
setup(**setup_args)
cleanup()
if __name__ == '__main__':
main()