chore: initial project scaffolding with fastapi, docker and modular
structure
This commit is contained in:
23
pyproject.toml
Normal file
23
pyproject.toml
Normal 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"]
|
||||
Reference in New Issue
Block a user