2021-01-27 06:04:05 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2018-12-21 21:19:06 +08:00
|
|
|
import setuptools
|
2024-07-04 20:40:11 +08:00
|
|
|
|
2019-09-10 23:52:26 +08:00
|
|
|
from imgtool import imgtool_version
|
2018-12-21 21:19:06 +08:00
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="imgtool",
|
2019-09-10 23:52:26 +08:00
|
|
|
version=imgtool_version,
|
2019-10-30 15:51:35 +08:00
|
|
|
author="The MCUboot committers",
|
2020-08-17 23:05:52 +08:00
|
|
|
author_email="mcuboot@groups.io",
|
2018-12-21 21:19:06 +08:00
|
|
|
description=("MCUboot's image signing and key management"),
|
|
|
|
license="Apache Software License",
|
2020-11-10 23:35:04 +08:00
|
|
|
url="http://github.com/mcu-tools/mcuboot",
|
2018-12-21 21:19:06 +08:00
|
|
|
packages=setuptools.find_packages(),
|
2020-03-18 02:08:12 +08:00
|
|
|
python_requires='>=3.6',
|
2018-12-21 21:19:06 +08:00
|
|
|
install_requires=[
|
2024-07-04 20:40:11 +08:00
|
|
|
'cryptography>=40.0.0',
|
2018-12-21 21:19:06 +08:00
|
|
|
'intelhex>=2.2.1',
|
|
|
|
'click',
|
2021-11-02 19:12:04 +08:00
|
|
|
'cbor2',
|
2023-09-04 22:16:42 +08:00
|
|
|
'pyyaml',
|
2018-12-21 21:19:06 +08:00
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": ["imgtool=imgtool.main:imgtool"]
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Topic :: Software Development :: Build Tools",
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
],
|
|
|
|
)
|