linuxOS_D21X/source/uboot-2021.10/tools/binman/setup.py

13 lines
421 B
Python
Raw Normal View History

2024-11-29 08:13:19 +00:00
# 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'])