This commit is contained in:
Bastian Wagner
2026-05-05 19:26:43 +02:00
commit 8d07939527
29 changed files with 2646 additions and 0 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "mywhoosh-garmin-sync"
version = "0.1.0"
description = "Sync MyWhoosh FIT activities to Garmin Connect with local device metadata conversion."
requires-python = ">=3.12"
dependencies = [
"curl_cffi>=0.11,<1",
"garminconnect>=0.3.3,<0.4",
"playwright>=1.52,<2",
"python-dotenv>=1.0,<2",
]
[project.scripts]
mywhoosh-garmin-sync = "mywhoosh_garmin_sync.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"