add pyproject.toml for project configuration and dependencies

This commit is contained in:
2025-05-17 12:34:48 +02:00
commit 17dc04264d
8 changed files with 332 additions and 0 deletions

10
pyproject.toml Normal file
View File

@@ -0,0 +1,10 @@
[project]
name = "mail-management"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.13"
dependencies = [
"django>=5.2.1",
"mypy>=1.15.0",
"ruff>=0.11.10",
]