forked from JelmerT/cc2538-bsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (34 loc) · 960 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name="cc1352_flasher"
version="3.0a7"
description="Script flash CC1352 on BeaglePlay or BeagleConnect Freedom"
readme="README.md"
authors=[
{ name = "Jason Kridner", email = "[email protected]" },
{ name = "Jelmer Tiete", email = "[email protected]" }
]
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",
]
dependencies = [
"gpiod==1.5.4",
"intelhex==2.3.0",
"pyserial==3.5b0",
"python_magic==0.4.27",
"scripttest==1.3",
"setuptools==52.0.0",
]
requires-python = ">=3.4"
[project.scripts]
cc1352_flasher = "cc1352_flasher.cli:main"