##// END OF EJS Templates
Merge pull request #1526 from takluyver/openpy...
Merge pull request #1526 from takluyver/openpy Find encoding for Python files; this uses the encoding cookie defined in PEP 263 to correctly decode .py files in encodings other than utf-8.

File last commit:

r2460:e8303d57
r6454:0fed70ce merge
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')