blob: a228ea351e73ffe72052be071eb2d99d59af6dbd [file] [log] [blame]
David Brown79c4fcf2021-01-26 15:04:05 -07001# SPDX-License-Identifier: Apache-2.0
2
Fabio Utzige89841d2018-12-21 11:19:06 -02003import setuptools
Fabio Utzig25c6a152019-09-10 12:52:26 -03004from imgtool import imgtool_version
Fabio Utzige89841d2018-12-21 11:19:06 -02005
6setuptools.setup(
7 name="imgtool",
Fabio Utzig25c6a152019-09-10 12:52:26 -03008 version=imgtool_version,
Sam Bristowd0ca0ff2019-10-30 20:51:35 +13009 author="The MCUboot committers",
Fabio Utzig37dec812020-08-17 12:05:52 -030010 author_email="mcuboot@groups.io",
Fabio Utzige89841d2018-12-21 11:19:06 -020011 description=("MCUboot's image signing and key management"),
12 license="Apache Software License",
Fabio Utzigde1d72d2020-11-10 12:35:04 -030013 url="http://github.com/mcu-tools/mcuboot",
Fabio Utzige89841d2018-12-21 11:19:06 -020014 packages=setuptools.find_packages(),
David Vincze71b8f982020-03-17 19:08:12 +010015 python_requires='>=3.6',
Fabio Utzige89841d2018-12-21 11:19:06 -020016 install_requires=[
17 'cryptography>=2.4.2',
18 'intelhex>=2.2.1',
19 'click',
David Vincze71b8f982020-03-17 19:08:12 +010020 'cbor>=1.0.0',
Fabio Utzige89841d2018-12-21 11:19:06 -020021 ],
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)