Former-commit-id: fa5e33604b6a832bb5b5d4d082a26d8d68e690ad [formerly2982d68160
] Former-commit-id:829afc3e85
7 lines
187 B
Python
Executable file
7 lines
187 B
Python
Executable file
#!/usr/bin/env python
|
|
"""
|
|
A setup.py script to use setuptools, which gives egg goodness, etc.
|
|
"""
|
|
|
|
from setuptools import setup
|
|
exec(compile(open('setup.py').read(), 'setup.py', 'exec'))
|