-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.35 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "cc2538-bsl"
description="Script to communicate with Texas Instruments CC13xx/CC2538/CC26xx Serial Boot Loader ."
keywords=[ "cc2538", "cc1310", "cc13xx", "bootloader", "cc26xx", "cc2650", "cc2640" ]
authors = [ { name = "Jelmer Tiete", email = "jelmer@tiete.be" } ]
readme = "README.md"
license = { file = "LICENSE.md" }
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",
]
requires-python = ">=3.6"
dynamic = ["version"]
dependencies = [ "pyserial" ]
[project.urls]
Home = "https://github.com/JelmerT/cc2538-bsl"
Repository = "https://github.com/JelmerT/cc2538-bsl"
Issues = "https://github.com/JelmerT/cc2538-bsl/issues"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[project.optional-dependencies]
cc2538-bsl = [ "intelhex" ]
intelhex = [ "python-magic" ]
test = [ "pytest" ]
[project.scripts]
cc2538-bsl = "cc2538_bsl.cc2538_bsl:main_cli"
# cc2538-bsl = "cc2538-bsl.py"
[tool.setuptools]
platforms = ["posix"]