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