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", |
Fabio Utzig | f0131cd | 2019-10-11 13:10:58 -0300 | [diff] [blame] | 8 | author_email="dev-mcuboot@lists.runtime.co", |
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", |
| 11 | url="http://github.com/JuulLabs-OSS/mcuboot", |
| 12 | packages=setuptools.find_packages(), |
| 13 | install_requires=[ |
| 14 | 'cryptography>=2.4.2', |
| 15 | 'intelhex>=2.2.1', |
| 16 | 'click', |
| 17 | ], |
| 18 | entry_points={ |
| 19 | "console_scripts": ["imgtool=imgtool.main:imgtool"] |
| 20 | }, |
| 21 | classifiers=[ |
| 22 | "Programming Language :: Python :: 3", |
| 23 | "Development Status :: 4 - Beta", |
| 24 | "Topic :: Software Development :: Build Tools", |
| 25 | "License :: OSI Approved :: Apache Software License", |
| 26 | ], |
| 27 | ) |