mirror of
https://github.com/sstent/FitTrack_GarminSync.git
synced 2026-01-25 16:41:41 +00:00
feat: Initial commit of FitTrack_GarminSync project
This commit is contained in:
41
backend/pyproject.toml
Normal file
41
backend/pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user