-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (46 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
".git",
".gitignore",
".*",
"*.sh",
"src/wfx_common_tools/connection/README.md",
"src/wfx_common_tools/pta/README.md",
"src/wfx_common_tools/test_feature/README.md",
"src/wfx_common_tools/test_feature/certification.md",
"*.xlsx",
"*.png",
"*.PNG",
"*.jpg",
"*.JPG",
]
[project]
name = "wfx_common_tools"
version = "5.5.3"
authors = [
{ name = "silabs-Marc", email = "[email protected]"},
]
dependencies = [
"paramiko>=2.7.1",
"pyserial>=3.4",
"ifaddr>=0.1.6",
]
maintainers = [
{ name="silabs-tuD", email="[email protected]" },
{ name="silabs-JulienT", email="[email protected]" },
{ name = "silabs-Marc", email = "[email protected]"},
]
description = "Silicon Laboratories WFx Wi-Fi tools for all supported platforms"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/SiliconLabs/wfx-common-tools"
Issues = "https://github.com/SiliconLabs/wfx-common-tools/issues"