Merge tag 'u-boot-imx-20200825' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[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'],
9       package_dir={'binman': ''},
10       package_data={'binman': ['README', 'README.entries']},
11       classifiers=['Environment :: Console',
12                    'Topic :: Software Development :: Embedded Systems'])