19 lines
377 B
TOML
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"
|