2018-12-21 21:19:06 +08:00
|
|
|
import setuptools
|
2019-09-10 23:52:26 +08:00
|
|
|
from imgtool import imgtool_version
|
2018-12-21 21:19:06 +08:00
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="imgtool",
|
2019-09-10 23:52:26 +08:00
|
|
|
version=imgtool_version,
|
2019-10-30 15:51:35 +08:00
|
|
|
author="The MCUboot committers",
|
2019-10-12 00:10:58 +08:00
|
|
|
author_email="dev-mcuboot@lists.runtime.co",
|
2018-12-21 21:19:06 +08:00
|
|
|
description=("MCUboot's image signing and key management"),
|
|
|
|
license="Apache Software License",
|
|
|
|
url="http://github.com/JuulLabs-OSS/mcuboot",
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
install_requires=[
|
|
|
|
'cryptography>=2.4.2',
|
|
|
|
'intelhex>=2.2.1',
|
|
|
|
'click',
|
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": ["imgtool=imgtool.main:imgtool"]
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Topic :: Software Development :: Build Tools",
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
],
|
|
|
|
)
|