]> git.saurik.com Git - wxWidgets.git/commitdiff
Needed so we can install TaskRunner to Python's site-packages dir and use it from...
authorKevin Ollivier <kevino@theolliviers.com>
Mon, 6 Mar 2006 03:19:45 +0000 (03:19 +0000)
committerKevin Ollivier <kevino@theolliviers.com>
Mon, 6 Mar 2006 03:19:45 +0000 (03:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37823 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/distrib/all/setup.py [new file with mode: 0644]

diff --git a/wxPython/distrib/all/setup.py b/wxPython/distrib/all/setup.py
new file mode 100644 (file)
index 0000000..1e1b4b8
--- /dev/null
@@ -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