26 lines
498 B
TOML
26 lines
498 B
TOML
[project]
|
|
name = "receipts"
|
|
authors = [{name = "Dustin C. Hatch", email = "dustin@hatch.name"}]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115.10",
|
|
"httpx>=0.28.1",
|
|
"python-multipart>=0.0.20",
|
|
"uvicorn>=0.34.0",
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
[tool.pyright]
|
|
venvPath = '.'
|
|
venv = '.venv'
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
skip-string-normalization = true
|