wxWidgets/wxPython/distrib/all/tr_setup.py
Robin Dunn f0ac483feb renamed setup.py to tr_setup.py because build-all does an import of
setup, (to get the version number) expecting to get the one in the
root wxPython dir.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2006-07-05 05:25:25 +00:00

13 lines
239 B
Python

# setup.py for taskrunner.py
import sys
from distutils.core import setup
deps = []
if sys.version_info < (2, 4):
deps.append("subprocess")
setup(name='taskrunner',
version='0.8',
py_modules=['taskrunner'] + deps,
)