21 lines
452 B
TOML
21 lines
452 B
TOML
[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"
|