26 lines
534 B
TOML
26 lines
534 B
TOML
[project]
|
|
name = "demo-rest"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Your Name",email = "you@example.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
fastapi = "^0.116.1"
|
|
uvicorn = { version = "^0.35.0", extras = [ "standard" ] }
|
|
gunicorn = "^23.0.0"
|
|
pydantic = "^2.11.7"
|
|
python-dotenv = "^1.0.1"
|
|
pydantic-settings = "^2.10.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|