generated from ludeeus/integration_blueprint
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
119 lines (107 loc) · 3.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[project]
name = "hass-foldingathomecontrol"
version = "1.0+versionplaceholder.1"
description = "Homeassistant Custom Component to integrate with Folding@Home"
license = "MIT"
readme = "README.md"
authors = [
{ name = "Kevin Stillhammer", email = "kevin.stillhammer@gmail.com" }
]
repository = "http://github.com/eifinger/hass-foldingathomecontrol"
keywords = [
"aiohttp",
"asyncio",
"foldingathome",
"folding-at-home"
]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License"
]
requires-python = ">=3.10"
dependencies = [
"PyFoldingAtHomeControl>=3.0.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["custom_components/foldingathomecontrol"]
[tool.rye]
managed = true
dev-dependencies = [
"codespell>=2.2.6",
"mypy>=1.7.1",
"pre-commit>=3.6.0",
"yamllint>=1.33.0",
"ruff>=0.1.7",
"pytest-homeassistant-custom-component>=0.13.45",
"pre-commit-hooks>=4.5.0",
"respx>=0.20.2",
]
[tool.pytest.ini_options]
addopts = "--cov --cov-report term-missing --asyncio-mode=auto --cov=custom_components tests"
[tool.coverage.report]
show_missing = true
exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
ignore = [
"D107", # Missing docstring in __init__
"D202", # No blank lines allowed after function docstring
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
"D404", # First word of the docstring should not be This
"D406", # Section name should end with a newline
"D407", # Section name underlining
"D411", # Missing blank line before section
"E501", # line too long
"E731", # do not assign a lambda expression, use a def
]
select = [
"B007", # Loop control variable {name} not used within loop body
"B014", # Exception handler with duplicate exception
"C", # complexity
"D", # docstrings
"E", # pycodestyle
"F", # pyflakes/autoflake
"ICN001", # import concentions; {name} should be imported as {asname}
"PGH004", # Use specific rule codes when using noqa
"PLC0414", # Useless import alias. Import alias does not rename original package.
"SIM105", # Use contextlib.suppress({exception}) instead of try-except-pass
"SIM117", # Merge with-statements that use the same scope
"SIM118", # Use {key} in {dict} instead of {key} in {dict}.keys()
"SIM201", # Use {left} != {right} instead of not {left} == {right}
"SIM212", # Use {a} if {a} else {b} instead of {b} if not {a} else {a}
"SIM300", # Yoda conditions. Use 'age == 42' instead of '42 == age'.
"SIM401", # Use get from dict with default instead of an if block
"T20", # flake8-print
"TRY004", # Prefer TypeError exception for invalid type
"RUF006", # Store a reference to the return value of asyncio.create_task
"UP", # pyupgrade
"W", # pycodestyle
]
[tool.ruff.mccabe]
max-complexity = 12
[tool.ruff.flake8-pytest-style]
fixture-parentheses = false
[tool.ruff.pyupgrade]
keep-runtime-typing = true
[tool.semantic_release]
version_source = "tag"
commit_version_number = true
version_toml = "pyproject.toml:tool.poetry.version"
version_pattern = "custom_components/foldingathomecontrol/manifest.json:\"version\": \"{version}\""
version_variable = "custom_components/foldingathomecontrol/const.py:VERSION"
build_command = false
upload_to_repository = false
upload_to_release = false
branch = "main"