replace pip with uv

This commit is contained in:
2026-02-19 18:31:17 +01:00
parent 683c73421f
commit 5b48167c66
4 changed files with 21 additions and 6 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "gaehsnitz"
version = "0.1.0"
requires-python = ">=3.14"
dependencies = [
"django==6.0.2",
"gunicorn==23.0.0",
"psycopg[binary]==3.3.3",
]
[tool.ruff]
target-version = "py314"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]