updated setuptools

main
Justin Barnett 2025-03-22 18:11:48 -04:00
parent 855adffaf5
commit 8caf8a5d91
1 changed files with 2 additions and 8 deletions

View File

@ -4,18 +4,12 @@ version = "0.1.0"
description = "Unity MCP Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)." description = "Unity MCP Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)."
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"
dependencies = [ dependencies = ["httpx>=0.28.1", "mcp[cli]>=1.4.1"]
"httpx>=0.28.1",
"mcp[cli]>=1.4.1"
]
[build-system] [build-system]
requires = ["setuptools>=42", "wheel"] requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[tool.setuptools] [tool.setuptools]
# These are the single-file modules at the root of the Python folder.
py-modules = ["config", "server", "unity_connection"] py-modules = ["config", "server", "unity_connection"]
# The "tools" subdirectory is a package.
packages = ["tools"] packages = ["tools"]