SPDX: Convert all of our single license tags to Linux Kernel style
[oweals/u-boot.git] / tools / patman / setup.py
1 # SPDX-License-Identifier: GPL-2.0+
2
3 from distutils.core import setup
4 setup(name='patman',
5       version='1.0',
6       license='GPL-2.0+',
7       scripts=['patman'],
8       packages=['patman'],
9       package_dir={'patman': ''},
10       package_data={'patman': ['README']},
11       classifiers=['Environment :: Console',
12                    'Topic :: Software Development'])