chore: setup uv dependency management and required packages

This commit is contained in:
Markus Graf
2026-05-09 22:18:29 +02:00
parent be7f037c13
commit a215eb7106
3 changed files with 466 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[project]
name = "wecker"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.136.1",
"python-crontab>=3.3.0",
"python-dotenv>=1.2.2",
"strawberry-graphql>=0.315.3",
"uvicorn>=0.46.0",
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.12",
]