-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.05 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
59
60
61
[project]
name = "pybehaviorlog"
version = "0.9.5"
requires-python = ">=3.13"
dependencies = [
"Django[argon2]==6.0.5",
"granian==2.7.5",
"openpyxl==3.1.5",
"psycopg[binary,pool]==3.3.4",
"redis[hiredis]==8.0.0",
]
[dependency-groups]
dev = [
"coverage[toml]>=7.14.1,<8",
"pre-commit>=4.6.0,<5",
"ruff>=0.15.15,<1",
]
[tool.uv]
package = false
[tool.ruff]
target-version = "py313"
line-length = 100
exclude = [
"migrations",
"media",
"staticfiles",
".venv",
]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "UP", "RUF", "SIM", "C4"]
ignore = [
"E501",
# Django model/form Meta inner classes use mutable class attributes intentionally.
"RUF012",
# Existing code patterns intentionally trade strictness for readability in this project.
"RUF005",
"RUF010",
"RUF046",
"C416",
]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
[tool.coverage.run]
branch = true
source = ["tracker"]
omit = [
"*/migrations/*",
"tracker/admin.py",
]
[tool.coverage.report]
fail_under = 81
show_missing = true
skip_covered = false