Merge tag 'u-boot-imx-20200825' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / tools / dtoc / setup.py
1 # SPDX-License-Identifier: GPL-2.0+
2
3 from distutils.core import setup
4 setup(name='dtoc',
5       version='1.0',
6       license='GPL-2.0+',
7       scripts=['dtoc'],
8       packages=['dtoc'],
9       package_dir={'dtoc': ''},
10       package_data={'dtoc': ['README']},
11       classifiers=['Environment :: Console',
12                    'Topic :: Software Development :: Embedded Systems'])