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
		
			
				
	
	
		
			13 lines
		
	
	
		
			239 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			239 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# 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,
 | 
						|
      ) |