1# SPDX-License-Identifier: Apache-2.0 2 3import setuptools 4 5from imgtool import imgtool_version 6 7setuptools.setup( 8 name="imgtool", 9 version=imgtool_version, 10 author="The MCUboot committers", 11 author_email="mcuboot@groups.io", 12 description=("MCUboot's image signing and key management"), 13 license="Apache Software License", 14 url="http://github.com/mcu-tools/mcuboot", 15 packages=setuptools.find_packages(), 16 python_requires='>=3.6', 17 install_requires=[ 18 'cryptography>=40.0.0', 19 'intelhex>=2.2.1', 20 'click', 21 'cbor2', 22 'pyyaml', 23 ], 24 entry_points={ 25 "console_scripts": ["imgtool=imgtool.main:imgtool"] 26 }, 27 classifiers=[ 28 "Programming Language :: Python :: 3", 29 "Development Status :: 4 - Beta", 30 "Topic :: Software Development :: Build Tools", 31 "License :: OSI Approved :: Apache Software License", 32 ], 33) 34