24 lines
543 B
TOML
24 lines
543 B
TOML
[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"]
|