-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.32 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
[project]
name = "solidsign-backend"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"django-tailwind>=3.8.0",
"django>=5.1.4",
"django-browser-reload>=1.17.0",
"django-storages>=1.14.4",
"boto3>=1.35.77",
"pillow>=11.0.0",
"django-cors-headers>=4.6.0",
"gunicorn>=23.0.0",
"django-stubs-ext>=5.1.1",
"django-meta>=2.4.2",
]
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
strict = true
[[tool.mypy.overrides]]
module = [
"factory",
"meta.models",
"meta.views",
]
ignore_missing_imports = true
[tool.django-stubs]
django_settings_module = "backend.settings"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "backend.settings"
python_files = ["test_*.py"]
env = [
"D:SECRET_KEY=django-top-secret",
"D:ENV=test"
]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = ["I", "E", "F", "W", "C901", "DTZ", "DJ", "SIM"]
[tool.coverage.run]
omit = ['backend.asgi.py', 'backend.wsgi.py']
[dependency-groups]
dev = [
"django-stubs>=5.1.1",
"pytest-django>=4.9.0",
"pytest>=8.3.4",
"pytest-env>=1.1.5",
"ruff>=0.8.2",
"mypy>=1.13.0",
"factory-boy>=3.3.1",
"pytest-coverage>=0.0",
"ics>=0.7.2",
]