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