pyproject.toml•758 B
[project]
name = "merge-mcp"
version = "0.1.4"
description = "An MCP interface for the Merge API"
readme = "README.md"
authors = [
{ email = "david.dalmaso@merge.dev" }
]
requires-python = ">=3.10"
dependencies = [
"isort>=6.0.1",
"mcp",
]
[project.scripts]
merge-mcp = "merge_mcp.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-cov>=6.1.1",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"pytest-mock"
]