mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 20:58:22 +00:00

distutils is about to meet its demise [1]. Switch to setuptools. [1] https://peps.python.org/pep-0632/ Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
12 lines
362 B
Python
12 lines
362 B
Python
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
from setuptools import setup
|
|
setup(name='patman',
|
|
version='1.0',
|
|
license='GPL-2.0+',
|
|
scripts=['patman'],
|
|
packages=['patman'],
|
|
package_dir={'patman': ''},
|
|
package_data={'patman': ['README']},
|
|
classifiers=['Environment :: Console',
|
|
'Topic :: Software Development'])
|