Fabio Utzig | e89841d | 2018-12-21 11:19:06 -0200 | [diff] [blame] | 1 | import setuptools |
Fabio Utzig | 25c6a15 | 2019-09-10 12:52:26 -0300 | [diff] [blame] | 2 | from imgtool import imgtool_version |
Fabio Utzig | e89841d | 2018-12-21 11:19:06 -0200 | [diff] [blame] | 3 | |
| 4 | setuptools.setup( |
| 5 | name="imgtool", |
Fabio Utzig | 25c6a15 | 2019-09-10 12:52:26 -0300 | [diff] [blame] | 6 | version=imgtool_version, |
Sam Bristow | d0ca0ff | 2019-10-30 20:51:35 +1300 | [diff] [blame] | 7 | author="The MCUboot committers", |
Fabio Utzig | 37dec81 | 2020-08-17 12:05:52 -0300 | [diff] [blame] | 8 | author_email="mcuboot@groups.io", |
Fabio Utzig | e89841d | 2018-12-21 11:19:06 -0200 | [diff] [blame] | 9 | description=("MCUboot's image signing and key management"), |
| 10 | license="Apache Software License", |
Fabio Utzig | de1d72d | 2020-11-10 12:35:04 -0300 | [diff] [blame] | 11 | url="http://github.com/mcu-tools/mcuboot", |
Fabio Utzig | e89841d | 2018-12-21 11:19:06 -0200 | [diff] [blame] | 12 | packages=setuptools.find_packages(), |
David Vincze | 71b8f98 | 2020-03-17 19:08:12 +0100 | [diff] [blame] | 13 | python_requires='>=3.6', |
Fabio Utzig | e89841d | 2018-12-21 11:19:06 -0200 | [diff] [blame] | 14 | install_requires=[ |
| 15 | 'cryptography>=2.4.2', |
| 16 | 'intelhex>=2.2.1', |
| 17 | 'click', |
David Vincze | 71b8f98 | 2020-03-17 19:08:12 +0100 | [diff] [blame] | 18 | 'cbor>=1.0.0', |
Fabio Utzig | e89841d | 2018-12-21 11:19:06 -0200 | [diff] [blame] | 19 | ], |
| 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 | ) |