Update dependency configuration in pyproject.toml and uv.lock for development packages

This commit is contained in:
Joakim Hellsén 2025-07-08 01:40:17 +02:00
commit 004265cc2d
2 changed files with 92 additions and 0 deletions

View file

@ -5,3 +5,10 @@ description = "Get notified when a new drop is available on Twitch."
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["django>=5.2.4"]
[dependency-groups]
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"]