feat: Initial commit of FitTrack_GarminSync project

This commit is contained in:
2025-10-10 12:20:48 -07:00
parent d0e29fbeb4
commit 18f9f6fa18
229 changed files with 21035 additions and 42 deletions

41
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,41 @@
[project]
name = "garmin_sync_backend"
version = "0.1.0"
description = "Backend service for GarminSync"
dependencies = [
"fastapi",
"uvicorn",
"garth",
"garminconnect",
"passlib[bcrypt]",
"python-jose[jwt]",
"pydantic-settings",
"limits",
"httpx",
"tenacity",
]
requires-python = ">=3.10"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"] # Error, Flake8, Warnings, Isort
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.pytest.ini_options]
pythonpath = ["src"]
asyncio_mode = "auto"