-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 953 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
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "quirk-generator"
version = "0.0.0"
description = "Stub quirk generator for zha-quirks"
urls = {repository = "https://github.com/zigpy/quirk-generator"}
authors = [
{name = "TheJulianJES", email = "julian.tjj@proton.me"},
{name = "David F. Mulcahey", email = "david.mulcahey@icloud.com"},
]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"click",
"jinja2",
"zigpy>=0.56.1",
"zha-quirks>=0.0.101",
]
[tool.setuptools]
packages = ["quirk_generator"]
[tool.setuptools.package-data]
"*" = ["templates/*.j2"]
[project.scripts]
quirk-generator = "quirk_generator.cli:cli"
[tool.ruff]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]
src = ["quirk_generator"]
[tool.ruff.isort]
known-first-party = ["quirk_generator", "tests"]