mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	This fixes a regression introduced in commit 74df491051d6 ("buildman:
Convert documentation to rST").
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
		
	
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			366 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			366 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0+
 | 
						|
 | 
						|
from setuptools import setup
 | 
						|
setup(name='patman',
 | 
						|
      version='1.0',
 | 
						|
      license='GPL-2.0+',
 | 
						|
      scripts=['patman'],
 | 
						|
      packages=['patman'],
 | 
						|
      package_dir={'patman': ''},
 | 
						|
      package_data={'patman': ['README.rst']},
 | 
						|
      classifiers=['Environment :: Console',
 | 
						|
                   'Topic :: Software Development'])
 |