-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (77 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (77 loc) · 1.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "hauki"
requires-python = ">=3.12, <3.13"
version = "1.11.9"
dependencies = [
"Django~=5.2.14",
"bleach",
"django-cors-headers",
"django-environ",
"django-extra-fields",
"django-filter",
"django-helsinki-health-endpoints",
"django-helusers",
"django-logger-extra",
"python-jose[cryptography]", # Explicit cryptography backend to avoid vulnerable ecdsa (CVE-2024-23342)
"django-model-utils<5",
"django-modeltranslation",
"django-orghierarchy",
"django-simple-history",
"django-timezone-field",
"djangorestframework",
"drf-spectacular<0.27", # 0.27 breaks the schema generation
"drf-writable-nested",
"holidays",
"psycopg[c]",
"requests-cache",
"sentry-sdk[django]",
"social-auth-app-django",
"tzdata",
"whitenoise",
]
[dependency-groups]
prod = [
"uwsgi",
"uwsgitop",
]
dev = [
"django-extensions",
"factory_boy",
"faker",
"freezegun",
"ipython",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-factoryboy",
"requests-mock",
]
[tool.uv]
package = false
exclude-newer = "P3D"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pep8-naming
"N",
# flake8-bugbear without opinionated rules
"B0",
# flake8-pie
"PIE",
# flake8-print
"T20",
# pyupgrade
"UP",
]
extend-per-file-ignores = { "*/migrations/*" = ["E501"], "*/tests/*" = ["E501"] }
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "hauki.test_settings"