blob: 707f60d8293c39a4ee3dd25d8145564ef72379c8 [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 Utzigb916e8d2019-09-10 12:52:45 -03008 author_email="None",
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)