pyproject.toml•805 B
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "BiRRe"
version = "3.0.0"
description = "Model Context Protocol server for BitSight security ratings"
authors = [{ name = "boecht" }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp==2.12.4",
"dynaconf",
"pydantic>=2.6.0,<3",
"python-dotenv",
"httpx",
"prance>=23.6.7",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.12.0",
"typer>=0.12.3",
"rich>=13.7.0",
"typing_extensions>=4.9.0",
"structlog>=24.1.0",
]
[project.urls]
repository = "https://github.com/boecht/birre"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[project.scripts]
birre = "server:main"