mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 10:21:25 +01:00 
			
		
		
		
	Allow dtoc to be installed by adding a suitable setup.py script. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			13 lines
		
	
	
		
			376 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			376 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0+
 | 
						|
 | 
						|
from distutils.core import setup
 | 
						|
setup(name='dtoc',
 | 
						|
      version='1.0',
 | 
						|
      license='GPL-2.0+',
 | 
						|
      scripts=['dtoc'],
 | 
						|
      packages=['dtoc'],
 | 
						|
      package_dir={'dtoc': ''},
 | 
						|
      package_data={'dtoc': ['README']},
 | 
						|
      classifiers=['Environment :: Console',
 | 
						|
                   'Topic :: Software Development :: Embedded Systems'])
 |