initial commit
All checks were successful
Build & push Docker image / publish (push) Successful in 30s

This commit is contained in:
estebanthi
2025-10-18 16:32:21 +02:00
commit 15d18c3f62
13 changed files with 676 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "contact-api"
version = "0.1.0"
description = ""
authors = [
{name = "estebanthi",email = "esteban.thilliez@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"uvicorn (>=0.37.0,<0.38.0)",
"pydantic[email] (>=2.12.3,<3.0.0)",
"fastapi (>=0.119.0,<0.120.0)",
"dotenv (>=0.9.9,<0.10.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"