]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/distrib/all/setup.py
Needed so we can install TaskRunner to Python's site-packages dir and use it from...
[wxWidgets.git] / wxPython / distrib / all / setup.py
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