[project]
name = "api-example"
version = "0.1.0"
description = "Example FastAPI application"
requires-python = ">=3.11"
dependencies = [
    "fastapi>=0.109.0",
    "pydantic>=2.0.0",
]

[tool.streamline]
type = "uvicorn"
module = "main:app"
display_name = "API Example"
description = "Simple FastAPI REST API with example endpoints"
emoji = "⚡"

[tool.hatch.build.targets.wheel]
packages = ["."]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
