From 918978c710d1c1b644a5ab91b74e66adb3b4138d Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Mon, 6 Mar 2006 03:19:45 +0000 Subject: [PATCH] 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 --- wxPython/distrib/all/setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 wxPython/distrib/all/setup.py diff --git a/wxPython/distrib/all/setup.py b/wxPython/distrib/all/setup.py new file mode 100644 index 0000000000..1e1b4b8ec9 --- /dev/null +++ b/wxPython/distrib/all/setup.py @@ -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, + ) \ No newline at end of file