blob: 0eeeba525c02f321ed30ba83c4e103197c9ded96 [file] [log] [blame]
Fabio Utzige89841d2018-12-21 11:19:06 -02001import setuptools
2
3setuptools.setup(
4 name="imgtool",
Szymon Janc7fea8462019-07-04 14:45:52 +02005 version="1.3.1",
Fabio Utzige89841d2018-12-21 11:19:06 -02006 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)