]> git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/all/tr_setup.py
get rid of one of the extra slashes in the download URLs
[wxWidgets.git] / wxPython / distrib / all / tr_setup.py
1 # setup.py for taskrunner.py
2
3 import sys
4 from distutils.core import setup
5
6 deps = []
7 if sys.version_info < (2, 4):
8 deps.append("subprocess")
9
10 setup(name='taskrunner',
11 version='0.8',
12 py_modules=['taskrunner'] + deps,
13 )