Some Unix systems (GuixSD, NixOS) do not install programs like Bash and Python to /usr/bin, and /usr/bin/env has to be used to locate these instead. Change-Id: I7546bcb881c532adc984577ecb0ee2ec4f2efe00 Signed-off-by: Yegor Timoshenko <yegortimoshenko@riseup.net> Reviewed-on: https://review.coreboot.org/28953 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			683 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			683 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
from setuptools import setup
 | 
						|
 | 
						|
setup(
 | 
						|
    name="me_cleaner",
 | 
						|
    version="1.2",
 | 
						|
    description="Tool for partial deblobbing of Intel ME/TXE firmware images",
 | 
						|
    url="https://github.com/corna/me_cleaner",
 | 
						|
    author="Nicola Corna",
 | 
						|
    author_email="nicola@corna.info",
 | 
						|
    license="GPLv3+",
 | 
						|
    scripts=['me_cleaner.py'],
 | 
						|
    classifiers=[
 | 
						|
        'Development Status :: 4 - Beta',
 | 
						|
        'Intended Audience :: Developers',
 | 
						|
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
 | 
						|
        'Operating System :: OS Independent',
 | 
						|
        'Programming Language :: Python :: 2',
 | 
						|
        'Programming Language :: Python :: 3',
 | 
						|
    ]
 | 
						|
)
 |