-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.55 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
[project]
name = "Jandig"
version = "2.0.9"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"babel~=2.16",
"boto3~=1.36",
"django-cors-headers~=4.7",
"django-environ~=0.12",
"django-extensions~=4.0",
"django-htmx~=1.21",
"django-pghistory>=3.7.0",
"django-storages~=1.14",
"django~=6.0",
"djangorestframework-simplejwt>=5.5.0",
"djangorestframework~=3.15",
"drf-nested-routers~=0.94",
"fast-html>=1.0.11",
"granian[reload]>=2.5.0",
"jinja2~=3.1",
"markupsafe~=3.0",
"pillow~=11.1",
"psycopg[binary,pool]>=3.2.9",
"pymarker~=1.2",
"sentry-sdk[django]~=2.20",
"Sphinx~=8.1",
]
[dependency-groups]
dev = [
"dj-inmemorystorage~=2.1",
"django-debug-toolbar~=5.1",
"djlint>=1.36.4",
"factory-boy~=3.3",
"numpy>=2.3.1",
"playwright~=1.49",
"pytest-cov>=6.1.1",
"pytest-django~=4.9",
"pytest-playwright~=0.4",
"pytest-xdist~=3.6",
"pytest~=8.3",
"ruff>=0.11.4",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.test_settings"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
testpaths = ["src/core", "src/users", "src/blog", "src/ui_tests"]
pythonpath = "src"
addopts="-n4"
[tool.coverage.run]
relative_files=true
omit=["manage.py","asgi.py","wsgi.py","src/core/migrations/*.py", "src/users/migrations/*.py","src/blog/migrations/*.py", "src/ui_tests/*", "admin.py"]
[tool.ruff]
exclude = [
".git",
"migrations",
".venv",
]
line-length = 88
# Assume Python 3.13
target-version = "py313"
[tool.djlint]
profile="jinja"
extension="jinja2"