]> Git Repo - u-boot.git/blob - tools/patman/setup.py
Merge tag 'u-boot-stm32-20200528' of https://gitlab.denx.de/u-boot/custodians/u-boot-stm
[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'])
This page took 0.028345 seconds and 4 git commands to generate.