pyproject.toml•849 B
[project]
name = "finizi-b4b-mcp"
version = "1.0.0"
description = "MCP server for Finizi B4B API"
authors = [{name = "Finizi Team", email = "dev@finizi.ai"}]
requires-python = ">=3.11"
dependencies = [
"mcp>=0.9.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"tenacity>=8.2.0",
"structlog>=24.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.12.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: marks tests as integration tests requiring a running B4B API (deselect with '-m \"not integration\"')",
]