##// END OF EJS Templates
Make setupegg.py work on Windows....
Fernando Perez -
Show More
@@ -1,6 +1,7 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 """Wrapper to run setup.py using setuptools."""
2 """Wrapper to run setup.py using setuptools."""
3
3
4 import os
4 import sys
5 import sys
5
6
6 # now, import setuptools and call the actual setup
7 # now, import setuptools and call the actual setup
@@ -9,4 +10,4 b" execfile('setup.py')"
9
10
10 # clean up the junk left around by setuptools
11 # clean up the junk left around by setuptools
11 if "develop" not in sys.argv:
12 if "develop" not in sys.argv:
12 os.system('rm -rf ipython.egg-info build')
13 os.unlink('ipython.egg-info')
General Comments 0
You need to be logged in to leave comments. Login now