24 lines
600 B
TOML
24 lines
600 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "fastapi-current-status"
|
|
version = "0.1.0"
|
|
description = "Concurrency-safe latest-only check status integration for FastAPI"
|
|
requires-python = ">=3.11"
|
|
dependencies = ["fastapi>=0.110,<1"]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["httpx>=0.27,<1", "pytest>=8,<9", "pytest-asyncio>=0.23,<1"]
|
|
|
|
[project.scripts]
|
|
current-status-transform = "current_status.transform:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/current_status"]
|