mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	btool is needed after install binman to system. Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			437 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			437 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', 'binman.btool'],
 | 
						|
      package_dir={'binman': ''},
 | 
						|
      package_data={'binman': ['README.rst', 'entries.rst']},
 | 
						|
      classifiers=['Environment :: Console',
 | 
						|
                   'Topic :: Software Development :: Embedded Systems'])
 |