-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.16 KB
/
pyproject.toml
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
[project]
name = "Jandig"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"babel~=2.16.0",
"boto3~=1.36.6",
"django-cors-headers~=3.14.0",
"django-environ~=0.12.0",
"django-extensions~=3.2.3",
"django-htmx~=1.21.0",
"django-storages~=1.14.4",
"django~=5.1.4",
"djangorestframework~=3.15.2",
"drf-nested-routers~=0.94.1",
"factory-boy~=3.3.1",
"gevent~=24.11.1",
"gunicorn~=23.0.0",
"jinja2~=3.1.5",
"markupsafe~=2.1.1",
"pillow~=11.1.0",
"psycopg2-binary~=2.9.3",
"pymarker~=0.3.1",
"sentry-sdk~=2.20.0",
"Sphinx~=8.1.3",
]
[dependency-groups]
dev = [
"dj-inmemorystorage~=2.1.0",
"django-debug-toolbar~=4.4.6",
"invoke~=2.2.0",
"playwright~=1.49.1",
"pytest-django~=4.9.0",
"pytest-playwright~=0.4.4",
"pytest-xdist~=3.6.1",
"pytest~=7.4.4",
"ruff~=0.9.3",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.test_settings"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
pythonpath = "src"
addopts="-n4"
[tool.ruff]
exclude = [
".git",
"migrations",
".venv",
]
line-length = 88
# Assume Python 3.13
target-version = "py313"