##// END OF EJS Templates
time magic: shorten unnecessary output on windows...
time magic: shorten unnecessary output on windows On windows the detailed info (i.e. cpu time) is not available and always reported as zero. The rest of the information is therefore redundant with the next print (wall time) and can be omitted.

File last commit:

r2460:e8303d57
r9728:83a06926
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')