pyproject.toml•1.1 kB
[project]
name = "shell-executor-mcp"
version = "0.1.0"
description = "MCP server for safe shell command execution"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["mcp>=1.0.0"]
authors = [{ name = "Your Name", email = "your.email@example.com" }]
keywords = ["mcp", "shell", "command", "executor", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
shell-executor-mcp = "src.server:main"
[project.urls]
Homepage = "https://github.com/yourusername/shell-executor-mcp"
Repository = "https://github.com/yourusername/shell-executor-mcp.git"
Issues = "https://github.com/yourusername/shell-executor-mcp/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]