Needed so we can install TaskRunner to Python's site-packages dir and use it from everywhere. :)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37823 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier 2006-03-06 03:19:45 +00:00
parent a5bb4f8293
commit 918978c710

View File

@ -0,0 +1,13 @@
# 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,
)