Files
mywhoosh-garmin-sync/pyproject.toml
Bastian Wagner 8d07939527 Init
2026-05-05 19:26:43 +02:00

27 lines
607 B
TOML

[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"