diff options
Diffstat (limited to 'roms/u-boot/tools/binman/setup.py')
-rw-r--r-- | roms/u-boot/tools/binman/setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roms/u-boot/tools/binman/setup.py b/roms/u-boot/tools/binman/setup.py new file mode 100644 index 000000000..5ed94abda --- /dev/null +++ b/roms/u-boot/tools/binman/setup.py @@ -0,0 +1,12 @@ +# 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']) |