mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
02c102074d
Allow binman to be installed by adding a suitable setup.py script. Signed-off-by: Simon Glass <sjg@chromium.org>
12 lines
420 B
Python
12 lines
420 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', 'README.entries']},
|
|
classifiers=['Environment :: Console',
|
|
'Topic :: Software Development :: Embedded Systems'])
|