-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (81 loc) · 1.82 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
83
84
85
86
87
88
89
90
[project]
name = "notification-service"
version = "0.12.8"
requires-python = ">= 3.12"
dependencies = [
"Django~=5.2",
"django-axes",
"django-cors-headers",
"django-csp",
"django-environ",
"django-health-check",
"django-helusers",
"django-logger-extra",
"django-resilient-logger",
"djangorestframework",
"phonenumberslite",
"psycopg[c]",
"sentry-sdk[django]",
"social-auth-app-django",
]
[dependency-groups]
dev = [
"factory-boy",
"freezegun",
"ipython",
"pytest",
"pytest-cov",
"pytest-django",
"syrupy",
]
prod = [
"uwsgi",
"uwsgitop",
]
[tool.uv]
package = false
exclude-newer = "P3D"
[tool.ruff]
target-version = "py312"
extend-exclude = ["migrations"]
[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",
]
[tool.ruff.lint.isort]
# isort options for ruff:
# https://docs.astral.sh/ruff/settings/#lintisort
order-by-type = false # Don't use type (i.e. case) to sort imports
[tool.ruff.format]
docstring-code-format = true # Format code in docstrings
[tool.coverage.run]
# Coverage run options:
# https://coverage.readthedocs.io/en/latest/config.html#run
branch = true
omit = ["*migrations*", "*site-packages*", "*venv*"]
[tool.pytest.ini_options]
# pytest-django options:
# https://pytest-django.readthedocs.io/en/latest/configuring_django.html
DJANGO_SETTINGS_MODULE = "notification_service.settings"
# pytest options:
# https://docs.pytest.org/en/stable/reference/reference.html#configuration-options
norecursedirs = ["node_modules", ".git", "venv*"]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
"ALLOW_UNICODE",
]