xref: /rk3399_rockchip-uboot/tools/patman/setup.py (revision c62db35d52c6ba5f31ac36e690c58ec54b273298)
1#
2# SPDX-License-Identifier:      GPL-2.0+
3#
4from distutils.core import setup
5setup(name='patman',
6      version='1.0',
7      license='GPL-2.0+',
8      scripts=['patman'],
9      packages=['patman'],
10      package_dir={'patman': ''},
11      package_data={'patman': ['README']},
12      classifiers=['Environment :: Console',
13                   'Topic :: Software Development'])
14