pyproject.toml•580 B
[project]
name = "mcp-copyq"
version = "0.1.0"
description = "MCP server for CopyQ clipboard manager integration"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[project.scripts]
mcp-copyq = "mcp_copyq.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_copyq"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]