pyproject.toml•1.33 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "xplainable-mcp-server"
version = "0.1.0"
description = "MCP server for Xplainable AI platform integration"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Xplainable Team", email = "support@xplainable.io"},
]
dependencies = [
"fastmcp>=0.2.0",
"xplainable-client>=1.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.scripts]
xplainable-mcp = "xplainable_mcp.server:main"
xplainable-mcp-cli = "xplainable_mcp.cli:main"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["xplainable_mcp"]
[tool.black]
line-length = 100
target-version = ['py39']
[tool.ruff]
line-length = 100
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "C4", "SIM", "ARG"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"