projects
/
wxWidgets.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
accomodating to new files
[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
)