mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
61adb2d247
Add a link to binman's documentation and adjust the files so that it is accessible. Use the name README.rst so it is easy to discover when binman is installed without U-Boot. Signed-off-by: Simon Glass <sjg@chromium.org>
12 lines
424 B
Python
12 lines
424 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.rst', 'README.entries']},
|
|
classifiers=['Environment :: Console',
|
|
'Topic :: Software Development :: Embedded Systems'])
|