Skip to content

Commit

Permalink
Make setupegg.py work on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
fperez committed Jan 9, 2010
1 parent e5f4aab commit d84cd37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setupegg.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""

import os
import sys

# now, import setuptools and call the actual setup
Expand All @@ -9,4 +10,4 @@

# clean up the junk left around by setuptools
if "develop" not in sys.argv:
os.system('rm -rf ipython.egg-info build')
os.unlink('ipython.egg-info')

0 comments on commit d84cd37

Please sign in to comment.