-
Notifications
You must be signed in to change notification settings - Fork 181
/
setup.py
36 lines (34 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
setup(
name="cc2538-bsl",
description="Script to communicate with Texas Instruments CC13xx/CC2538/CC26xx Serial Boot Loader .",
long_description=open("README.md", encoding="utf-8").read(),
keywords="cc2538, cc1310, cc13xx, bootloader, cc26xx, cc2650, cc2640",
url="https://github.com/JelmerT/cc2538-bsl",
author="Jelmer Tiete",
author_email="[email protected]",
license="BSD-3-Clause",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
platforms="posix",
python_requires=">=3.4",
setup_requires=["setuptools_scm"],
use_scm_version=lambda: {
"version_scheme": "post-release",
"local_scheme": "node-and-date",
},
install_requires=["pyserial"],
extras_require={
'cc2538-bsl': ["intelhex"],
'intelhex': ["python-magic"]
},
scripts=["cc2538-bsl.py"],
)