-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 757 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 757 Bytes
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
[project]
name = "uv-lock-check"
version = "0.3.0"
description = "Validates if the uv.lock file and optionally requirements.txt files were generated from the current pyproject.toml file"
readme = "README.md"
requires-python = ">=3.14"
[dependency-groups]
lint = [
"ruff==0.16.0",
"ty==0.0.63",
]
test = [
"pytest",
"pytest-cov",
]
ci = [
{ include-group = "lint" },
{ include-group = "test" },
"pre-commit",
]
dev = [
{ include-group = "ci" },
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["."]
omit = ["tests/*", ".venv/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
show_missing = true
[tool.ruff]
target-version = "py314"