/ pyproject.toml
pyproject.toml
 1  [project]
 2  name = "terminal-mcp"
 3  version = "0.2.0"
 4  description = "Terminal MCP Server"
 5  dependencies = [
 6      "mcp>=1.0.0",
 7  ]
 8  requires-python = ">=3.8"
 9  
10  [build-system]
11  requires = ["hatchling"]
12  build-backend = "hatchling.build"
13  
14  [tool.hatch.build.targets.wheel]
15  packages = ["."]