Remove bloat

This commit is contained in:
Joakim Hellsén 2025-10-13 02:07:33 +02:00
commit 715cbf4bf0
51 changed files with 691 additions and 3032 deletions

View file

@ -6,29 +6,23 @@ readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"dateparser>=1.2.2",
"django-browser-reload>=1.18.0",
"django-debug-toolbar>=5.2.0",
"django-stubs[compatible-mypy]>=5.2.2",
"django-watchfiles>=1.1.0",
"django>=5.2.4",
"djlint>=1.36.4",
"json-repair>=0.50.0",
"orjson>=3.11.1",
"platformdirs>=4.3.8",
"python-dotenv>=1.1.1",
"psycopg[binary]>=3.2.3",
"pygments>=2.19.2",
"django-auto-prefetch>=1.13.0",
"httpx>=0.28.1",
]
[dependency-groups]
dev = ["pytest>=8.4.1", "pytest-django>=4.11.1", "pytest-xdist[psutil]>=3.8.0"]
dev = ["pytest>=8.4.1", "pytest-django>=4.11.1"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
python_files = ["test_*.py", "*_test.py"]
addopts = ["-n", "auto", "--reuse-db", "--no-migrations"]
addopts = ["--reuse-db", "--no-migrations"]
[tool.pyright]
exclude = ["**/migrations/**"]
@ -96,9 +90,3 @@ line-length = 160
[tool.djlint]
profile = "django"
ignore = "H021"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "config.settings"