Files
garmin-coach-to-cal-sync/pyproject.toml
2026-06-16 15:14:37 +02:00

34 lines
679 B
TOML

[project]
name = "garmin-coach-to-cal-sync"
version = "0.1.0"
description = "Probe Garmin Coach cycling workout cloning feasibility."
requires-python = ">=3.12"
dependencies = [
"cryptography>=43.0.0",
"fastapi>=0.115.0",
"garminconnect[workout]>=0.2.28",
"jinja2>=3.1.4",
"python-multipart>=0.0.9",
"python-dotenv>=1.0.1",
"uvicorn[standard]>=0.30.0",
]
[dependency-groups]
dev = [
"httpx>=0.27.0",
"pytest>=8.2",
"ruff>=0.8.0",
"ty>=0.0.1a1",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]