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, |
Fabio Utzig | e89841d | 2018-12-21 11:19:06 -0200 | [diff] [blame] | 7 | author="The MCUboot commiters", |
| 8 | description=("MCUboot's image signing and key management"), |
| 9 | license="Apache Software License", |
| 10 | url="http://github.com/JuulLabs-OSS/mcuboot", |
| 11 | packages=setuptools.find_packages(), |
| 12 | install_requires=[ |
| 13 | 'cryptography>=2.4.2', |
| 14 | 'intelhex>=2.2.1', |
| 15 | 'click', |
| 16 | ], |
| 17 | entry_points={ |
| 18 | "console_scripts": ["imgtool=imgtool.main:imgtool"] |
| 19 | }, |
| 20 | classifiers=[ |
| 21 | "Programming Language :: Python :: 3", |
| 22 | "Development Status :: 4 - Beta", |
| 23 | "Topic :: Software Development :: Build Tools", |
| 24 | "License :: OSI Approved :: Apache Software License", |
| 25 | ], |
| 26 | ) |