From: Robin Dunn Date: Wed, 5 Jul 2006 05:25:25 +0000 (+0000) Subject: renamed setup.py to tr_setup.py because build-all does an import of X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f0ac483feb67409028a1b6b6d047956d4a8f9b8a renamed setup.py to tr_setup.py because build-all does an import of setup, (to get the version number) expecting to get the one in the root wxPython dir. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/distrib/all/setup.py b/wxPython/distrib/all/setup.py deleted file mode 100644 index 1e1b4b8ec9..0000000000 --- a/wxPython/distrib/all/setup.py +++ /dev/null @@ -1,13 +0,0 @@ -# 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 diff --git a/wxPython/distrib/all/tr_setup.py b/wxPython/distrib/all/tr_setup.py new file mode 100644 index 0000000000..1e1b4b8ec9 --- /dev/null +++ b/wxPython/distrib/all/tr_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