unity-mcp/Python/pyproject.toml

21 lines
507 B
TOML
Raw Normal View History

2025-03-18 19:00:50 +08:00
[project]
name = "unity-mcp"
2025-03-18 19:00:50 +08:00
version = "0.1.0"
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",
]
[build-system]
2025-03-23 06:11:48 +08:00
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["config", "server", "unity_connection"]
packages = ["tools"]