Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30801
Added Files:
setup.py
Log Message:
Eventually setup_win32all.py will become setup.py (and setup_win32all will
become this stub that calls the real setup)
--- NEW FILE: setup.py ---
# Eventually setup_win32all.py will be renamed to setup.py
# When we do that, we will put a warning + the execfile in setup_win32all.py
import sys, os
mydir=os.path.dirname(sys.argv[0])
execfile(os.path.join(mydir, "setup_win32all.py"))
|