##// END OF EJS Templates
Windows install fixes...
Windows install fixes * Make Start menu item include Python version and bit-ness (prevents clobbering) * don't ask setuptools to install pyreadline on 64b Windows, due to pyreadline bug #787574

File last commit:

r2460:e8303d57
r4175:eaf7f8cf
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')