-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.26 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
[project]
name = "windrose-dedicated-server-docker-helm"
version = "2.1.0"
description = "Windrose dedicated server - Docker image and Helm chart"
authors = [
{name = "Max Pfeiffer",email = "max@maxpfeiffer.ch"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.13,<4"
dependencies = [
"click==8.4.2",
"python-on-whales==0.81.0",
"steam[client]==1.4.4",
]
[dependency-groups]
dev = [
"furl==2.1.4",
"pre-commit==4.6.2",
"pytest==9.1.1",
"pytest-mock==3.15.1",
"pytest-cov==7.1.0",
]
[tool.uv]
package = false
[tool.ruff]
src = ["build", "tests"]
extend-exclude = ["charts", "examples"]
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"D", # pydocstyle
"UP", # pyupgrade
"ASYNC", # flake8-async
"RUF", # Ruff-specific rules
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
# https://docs.pytest.org/en/latest/reference/customize.html
[tool.pytest.ini_options]
testpaths = [
"tests",
]
# The slow tests build the real container image and run containers, so they
# are deselected by default; run them with: pytest -m slow
addopts = "-m 'not slow'"
markers = [
"slow: slow tests that build the container image and run containers with Podman",
]