17 lines
338 B
TOML
17 lines
338 B
TOML
[project]
|
|
name = "todo-app"
|
|
version = "0.1.0"
|
|
description = "A simple task management API using FastAPI and SQLAlchemy"
|
|
authors = [
|
|
{ name="Your Name", email="your.email@example.com" }
|
|
]
|
|
|
|
dependencies = [
|
|
"fastapi",
|
|
"uvicorn[standard]",
|
|
"sqlalchemy",
|
|
"pytest",
|
|
"httpx",
|
|
"python-dotenv",
|
|
"pydantic>=2.0.0"
|
|
] |