[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "netmind-code-interpreter-mcp"
version = "0.1.0"
description = "A Model Context Protocol (MCP) server for code execution via Netmind API"
readme = "README.md"
authors = [
{ name = "Netmind", email = "support@netmind.ai" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/netmind-ai/netmind-code-interpreter-mcp"
Repository = "https://github.com/netmind-ai/netmind-code-interpreter-mcp"
Documentation = "https://github.com/netmind-ai/netmind-code-interpreter-mcp#readme"
[project.scripts]
netmind-code-interpreter = "netmind_code_interpreter.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/netmind_code_interpreter"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true