summaryrefslogtreecommitdiff
path: root/setupegg.py
blob: 2c2c9aa70fa3c92ac587f8b5cdbc8323e9cf96c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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() )