feat: migrate from venv to uv

This commit is contained in:
2025-12-03 19:46:30 +01:00
parent 6b8427ebc4
commit cf48f420f9
3 changed files with 386 additions and 9 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[project]
name = "flado"
version = "0.1.0"
description = "Flask todo app"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
dependencies = [
"Flask==3.1.2",
"SQLAlchemy>=2.0.36",
"Flask-SQLAlchemy==3.1.1",
"Flask-Migrate==4.0.5",
"python-dotenv==1.0.0",
"Werkzeug==3.1.0",
"gunicorn>=21.2.0",
"Flask-WTF>=1.2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = []