feat: Migrate site to python3 dashboard
All checks were successful
Check Code Quality / RuffCheck (push) Successful in 1m3s
Build Docker / BuildImage (push) Successful in 1m5s

This commit is contained in:
2026-02-11 14:18:34 +11:00
parent 11abe34d5b
commit 6efc480e70
101 changed files with 1876 additions and 15776 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "woodburn"
version = "0.1.0"
description = "Woodburn Website"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"flask>=3.1.2",
"gunicorn>=23.0.0",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"authlib==1.3.0",
"flask-caching>=2.3.1",
]
[dependency-groups]
dev = [
"pre-commit>=4.4.0",
"ruff>=0.14.5",
]