##// END OF EJS Templates
Fix for 2.x execfile that can not handle non-ascii filenames....
Fix for 2.x execfile that can not handle non-ascii filenames. Special case fix for windows where we can not in general use sys.getfilesystemencoding() to get a str that can be used to access all files.

File last commit:

r2460:e8303d57
r5090:1b786a02
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')