neo-neo-todo/pyproject.toml
minhtrannhat 1d6cbd4b6c
Initial commit
- Installed FastAPI web framework and uvicorn web server
2023-09-27 20:43:54 -04:00

19 lines
377 B
TOML

[project]
name = "neo-neo-todo"
version = "0.1.0"
description = "A todo API"
authors = [
{name = "minhtrannhat", email = "minh@minhtrannhat.com"},
]
dependencies = [
"fastapi>=0.103.1",
"uvicorn[standard]>=0.23.2",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "GPLv3"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"