blob: a58e6b02c7992c94fea42c6c14b76f9ea0fedf6c [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",
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)