-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (62 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "zigpy-cli"
dynamic = ["version"]
description = "Unified command line interface for zigpy radios"
urls = {repository = "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/zigpy/zigpy-cli"}
authors = [
{name = "puddly", email = "puddly3@gmail.com"}
]
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.11"
dependencies = [
"click>=8.1",
"coloredlogs>=15.0",
"scapy>=2.5.0",
"zigpy>=2.0.0",
"bellows>=0.47.0",
"zigpy-deconz>=0.25.0",
"zigpy-xbee>=0.22.0",
"zigpy-zigate>=0.14.0",
"zigpy-znp>=1.0.0"
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
[dependency-groups]
testing = [
"coverage[toml]>=7.0",
"pre-commit>=3.5",
"pytest>=8.4",
"pytest-asyncio>=1.0",
"pytest-cov>=5.0",
"pytest-mock>=3.14",
"pytest-timeout>=2.3",
]
ci = [
{include-group = "testing"},
"pytest-github-actions-annotate-failures>=0.2",
"pytest-xdist>=3.5",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.setuptools-git-versioning]
enabled = true
[project.scripts]
zigpy = "zigpy_cli.__main__:cli"
[tool.ruff]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]
src = ["zigpy_cli", "tests"]
[tool.ruff.isort]
known-first-party = ["zigpy_cli", "tests"]