2025-03-18 19:00:50 +08:00
|
|
|
[project]
|
2025-03-19 02:01:17 +08:00
|
|
|
name = "unity-mcp"
|
2025-03-18 19:00:50 +08:00
|
|
|
version = "0.1.0"
|
2025-03-19 02:01:17 +08:00
|
|
|
description = "Unity MCP Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)."
|
2025-03-18 19:00:50 +08:00
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.12"
|
2025-03-23 06:21:28 +08:00
|
|
|
dependencies = [
|
|
|
|
|
"httpx>=0.27.2",
|
|
|
|
|
"mcp[cli]>=1.4.1",
|
|
|
|
|
"uvicorn>=0.29.0",
|
|
|
|
|
"fastapi>=0.111.0",
|
|
|
|
|
]
|
2025-03-19 02:01:17 +08:00
|
|
|
|
|
|
|
|
[build-system]
|
2025-03-23 06:11:48 +08:00
|
|
|
requires = ["setuptools>=64.0.0", "wheel"]
|
2025-03-19 02:01:17 +08:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
|
py-modules = ["config", "server", "unity_connection"]
|
|
|
|
|
packages = ["tools"]
|