33 lines
706 B
TOML
33 lines
706 B
TOML
[project]
|
|
name = "quartermaster"
|
|
version = "0.1.0"
|
|
description = "Household budget tracker with FastAPI, HTMX, and SQLite."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Jeff Smith", email = "jeff@unbiasedgeek.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"alembic>=1.18.4",
|
|
"fastapi>=0.136.0",
|
|
"jinja2>=3.1.6",
|
|
"python-json-logger>=3.2.0",
|
|
"python-multipart>=0.0.26",
|
|
"sqlalchemy>=2.0.49",
|
|
"uvicorn[standard]>=0.44.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"httpx>=0.28.1",
|
|
"pytest>=9.0.3",
|
|
"pytest-asyncio>=1.3.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|