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        'cbor2',
21        'pyyaml',
22    ],
23    entry_points={
24        "console_scripts": ["imgtool=imgtool.main:imgtool"]
25    },
26    classifiers=[
27        "Programming Language :: Python :: 3",
28        "Development Status :: 4 - Beta",
29        "Topic :: Software Development :: Build Tools",
30        "License :: OSI Approved :: Apache Software License",
31    ],
32)
33