Newer
Older
gnexus-book / server / pyproject.toml
@Eugene Sukhodolskiy Eugene Sukhodolskiy 1 day ago 454 bytes Add Gnexus Book MCP server
[project]
name = "gnexus-book-server"
version = "0.1.0"
description = "API, MCP server, and validation foundation for Gnexus Book documentation."
requires-python = ">=3.11"
dependencies = [
  "fastapi>=0.115.0",
  "jsonschema>=4.23.0",
  "mcp>=1.27.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 = ["."]