-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-python-interpreter"
version = "1.2.3"
description = "MCP server for Python code execution and environment management"
authors = [
{name = "YZFly", email = "ethereal_ai@hotmail.com"},
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"fastmcp>=2.0.0",
]
[project.scripts]
mcp-python-interpreter = "mcp_python_interpreter.main:main"
[project.urls]
"Homepage" = "https://github.com/yzfly/mcp-python-interpreter"
"Bug Tracker" = "https://github.com/yzfly/mcp-python-interpreter/issues"
[tool.setuptools]
packages = ["mcp_python_interpreter"]