-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "zigpy-ota"
version = "0.0.0"
description = "Scripts for the zigpy-ota repository"
urls = {repository = "https://github.com/zigpy/zigpy-ota"}
authors = [
{name = "TheJulianJES", email = "julian.tjj@proton.me"},
]
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.13"
dependencies = [
"click>=8.3.1,<9",
"ruamel.yaml>=0.18.0,<0.19",
"requests>=2.31.0,<3",
"zigpy>=0.87.0",
]
[dependency-groups]
ci = [
"pytest-github-actions-annotate-failures>=0.3.0",
"pytest-xdist>=3.8.0",
]
dev = [
"codecov",
"pre-commit",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-sugar",
"pytest-timeout",
"syrupy",
"types-requests",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
[tool.setuptools.package-data]
zigpy_ota = ["py.typed"]
[project.scripts]
zigpy-ota = "zigpy_ota.cli:cli"
[tool.ruff]
src = ["zigpy_ota", "tests"]
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]
ignore = [
# Line too long
"E501",
]
[tool.ruff.lint.isort]
known-first-party = ["zigpy_ota", "tests"]