pyproject.toml•503 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp2term"
version = "0.1.0"
description = "MCP server providing terminal command execution with streaming output"
readme = "README.md"
authors = [{name = "mcp2term maintainers"}]
requires-python = ">=3.12"
dependencies = [
"mcp>=0.3.0",
"pydantic>=2.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.23",
]
[project.scripts]
mcp2term = "mcp2term.__main__:main"