Newer
Older
gnexus-book / server / pyproject.toml
[project]
name = "gnexus-book-server"
version = "0.1.0"
description = "Read-only API and validation foundation for Gnexus Book documentation."
requires-python = ">=3.11"
dependencies = [
  "fastapi>=0.115.0",
  "jsonschema>=4.23.0",
  "uvicorn[standard]>=0.30.0",
  "pyyaml>=6.0.0",
]

[project.optional-dependencies]
dev = [
  "pytest>=8.0.0",
  "httpx>=0.27.0",
]

[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]