blob: 0bf52385376139a3a1a7548c525ceaef24623993 [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,
Fabio Utzige89841d2018-12-21 11:19:06 -02007 author="The MCUboot commiters",
Fabio Utzigf0131cd2019-10-11 13:10:58 -03008 author_email="dev-mcuboot@lists.runtime.co",
Fabio Utzige89841d2018-12-21 11:19:06 -02009 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)