blob: b567a9a91a78a5aa1bb4b1f4ac1a953eb7246f55 [file] [log] [blame]
Fabio Utzige89841d2018-12-21 11:19:06 -02001import setuptools
Fabio Utzig25c6a152019-09-10 12:52:26 -03002from imgtool import imgtool_version
Fabio Utzige89841d2018-12-21 11:19:06 -02003
4setuptools.setup(
5 name="imgtool",
Fabio Utzig25c6a152019-09-10 12:52:26 -03006 version=imgtool_version,
Sam Bristowd0ca0ff2019-10-30 20:51:35 +13007 author="The MCUboot committers",
Fabio Utzig37dec812020-08-17 12:05:52 -03008 author_email="mcuboot@groups.io",
Fabio Utzige89841d2018-12-21 11:19:06 -02009 description=("MCUboot's image signing and key management"),
10 license="Apache Software License",
Fabio Utzigde1d72d2020-11-10 12:35:04 -030011 url="http://github.com/mcu-tools/mcuboot",
Fabio Utzige89841d2018-12-21 11:19:06 -020012 packages=setuptools.find_packages(),
David Vincze71b8f982020-03-17 19:08:12 +010013 python_requires='>=3.6',
Fabio Utzige89841d2018-12-21 11:19:06 -020014 install_requires=[
15 'cryptography>=2.4.2',
16 'intelhex>=2.2.1',
17 'click',
David Vincze71b8f982020-03-17 19:08:12 +010018 'cbor>=1.0.0',
Fabio Utzige89841d2018-12-21 11:19:06 -020019 ],
20 entry_points={
21 "console_scripts": ["imgtool=imgtool.main:imgtool"]
22 },
23 classifiers=[
24 "Programming Language :: Python :: 3",
25 "Development Status :: 4 - Beta",
26 "Topic :: Software Development :: Build Tools",
27 "License :: OSI Approved :: Apache Software License",
28 ],
29)