-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.06 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
[project]
name = "misar_web"
description = ""
version = "0.1.0"
authors = [{ name = "Adam K.", email = "[email protected]" }]
dependencies = [
"django>=4.2.7",
"pillow>=10.1.0",
"django-localflavor>=4.0",
"crispy-tailwind>=0.5.0",
"django-guardian>=2.4.0",
"django-template-partials>=23.4",
"python-dotenv>=1.0.1",
"whitenoise[brotli]>=6.6.0",
"gunicorn>=22.0.0",
"django-htmx>=1.17.3",
]
requires-python = ">=3.10,<3.11"
readme = "README.md"
license = { text = "MIT" }
[dependency-groups]
dev = [
"django-browser-reload>=1.12.1",
"django-tailwind>=3.6.0",
"coverage>=7.4.0",
"django-stubs>=4.2.6",
"pytest-django>=4.7.0",
"pytest-factoryboy>=2.6.0",
"django-debug-toolbar>=4.2.0",
]
[tool.ruff]
line-length = 88
[tools.basedpyright]
include = ["src"]
exclude = ["**/node_modules", "**/__pycache__", "src/local-cdn"]
venvPath = ".venv"
typeCheckingMode = "off"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "misar_web.settings"
python_files = ["test_*.py", "*_test.py", "testing/python/*.py"]