34 lines
747 B
TOML
34 lines
747 B
TOML
[project]
|
|
name = "mizan-fastapi"
|
|
version = "0.1.0"
|
|
license = "Elastic-2.0"
|
|
description = "Mizan FastAPI backend adapter — HTTP RPC dispatch + context bundling, built on mizan-core."
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mizan-core",
|
|
"fastapi>=0.110",
|
|
"pydantic>=2.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mizan_fastapi"]
|
|
|
|
[tool.uv.sources]
|
|
mizan-core = { path = "../../cores/mizan-python", editable = true }
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
python_classes = ["*Tests", "*Test", "Test*"]
|
|
python_functions = ["test_*"]
|