mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 10:21:25 +01:00 
			
		
		
		
	Update this to avoid sphinx warnings and incorporate it into the new documentaiton tree. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			13 lines
		
	
	
		
			421 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			421 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0+
 | 
						|
 | 
						|
from distutils.core import setup
 | 
						|
setup(name='binman',
 | 
						|
      version='1.0',
 | 
						|
      license='GPL-2.0+',
 | 
						|
      scripts=['binman'],
 | 
						|
      packages=['binman', 'binman.etype'],
 | 
						|
      package_dir={'binman': ''},
 | 
						|
      package_data={'binman': ['README.rst', 'entries.rst']},
 | 
						|
      classifiers=['Environment :: Console',
 | 
						|
                   'Topic :: Software Development :: Embedded Systems'])
 |