mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from distutils.core import setup
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    setup(
 | 
						|
      scripts=[
 | 
						|
        'byteyears.py',
 | 
						|
        'checkpyc.py',
 | 
						|
        'copytime.py',
 | 
						|
        'crlf.py',
 | 
						|
        'dutree.py',
 | 
						|
        'ftpmirror.py',
 | 
						|
        'h2py.py',
 | 
						|
        'lfcr.py',
 | 
						|
        'logmerge.py',
 | 
						|
        '../../Lib/tabnanny.py',
 | 
						|
        '../../Lib/timeit.py',
 | 
						|
        'untabify.py',
 | 
						|
        ],
 | 
						|
      )
 |