-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
92 lines (82 loc) · 2.2 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
[project]
name = "shrpid"
version = "2.2.6"
description = "shrpid is a power monitor and watchdog daemon for the SH-RPi."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"aiohttp>=3.10.11",
"dateparser>=1.2.0",
"loguru>=0.7.3",
"pyyaml>=6.0.2",
"rich>=13.9.4",
"smbus2>=0.5.0",
"typer>=0.15.1",
]
authors = [{ name = "Matti Airas", email = "[email protected]" }]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/shrpi"]
[project.scripts]
shrpi = "shrpi.__main__:cli"
shrpid = "shrpi.__main__:daemon"
[dependency-groups]
dev = [
"coverage>=7.6.1",
"coverage-badge>=1.1.2",
"mypy>=1.14.1",
"mypy-extensions>=1.0.0",
"pydocstyle>=6.3.0",
"pylint>=3.2.7",
"pytest>=8.3.4",
"pytest-cov>=5.0.0",
"pyupgrade>=3.8.0",
"ruff>=0.9.0",
"types-dateparser>=1.2.0.20240420",
"types-pyyaml>=6.0.12.20241230",
]
[tool.ruff]
line-length = 88
# pyflakes, pycodestyle and isort
lint.select = ["F", "E", "W", "I001"]
target-version = "py38"
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
color_output = true
pretty = true
python_version = "3.8"
show_traceback = true
allow_redefinition = false
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
doctest_optionflags = ["NUMBER", "NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL"]
norecursedirs = ["hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]
# Extra options:
addopts = [
"--strict-markers",
"--tb=short",
"--doctest-modules",
"--doctest-continue-on-failure",
]
[tool.coverage.run]
source = ["tests"]