chore: initial project scaffolding with fastapi, docker and modular

structure
This commit is contained in:
2026-01-31 14:17:49 +01:00
parent 07e67cc086
commit 09239d8f8c
11 changed files with 185 additions and 1 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[project]
name = "playtomic-wrapper"
version = "1.0.0"
description = "A FastAPI wrapper for Playtomic private APIs"
authors = [
{ name = "Tuo Nome", email = "tua@email.it" }
]
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"pydantic-settings>=2.1.0",
"requests>=2.31.0",
]
requires-python = ">=3.10"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
# Configurazione opzionale per il linter (molto consigliato)
line-length = 88
select = ["E", "F", "I"]