mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 16:48:18 +00:00

With the distutils module having been removed with Python 3.12, switch to using setuptools instead. Signed-off-by: Tom Rini <trini@konsulko.com>
12 lines
372 B
Python
12 lines
372 B
Python
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
from setuptools import setup
|
|
setup(name='dtoc',
|
|
version='1.0',
|
|
license='GPL-2.0+',
|
|
scripts=['dtoc'],
|
|
packages=['dtoc'],
|
|
package_dir={'dtoc': ''},
|
|
package_data={'dtoc': ['README']},
|
|
classifiers=['Environment :: Console',
|
|
'Topic :: Software Development :: Embedded Systems'])
|