Skip to content

Commit

Permalink
Add setupegg.py to allow setuptools functionality. Fixes #30
Browse files Browse the repository at this point in the history
  • Loading branch information
tmc committed Jul 13, 2012
1 parent 063d82e commit a7801bc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions setupegg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""

import os, sys

# now, import setuptools and call the actual setup
import setuptools
try:
execfile('setup.py')
except NameError:
exec( open('setup.py','rb').read() )

0 comments on commit a7801bc

Please sign in to comment.