Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / setup.py
1 # SPDX-License-Identifier: GPL-2.0+
2
3 from distutils.core import setup
4 setup(name='binman',
5       version='1.0',
6       license='GPL-2.0+',
7       scripts=['binman'],
8       packages=['binman', 'binman.etype', 'binman.btool'],
9       package_dir={'binman': ''},
10       package_data={'binman': ['README.rst', 'entries.rst']},
11       classifiers=['Environment :: Console',
12                    'Topic :: Software Development :: Embedded Systems'])