From 8caf8a5d91534406a79afa5b227c50b727cc0326 Mon Sep 17 00:00:00 2001 From: Justin Barnett Date: Sat, 22 Mar 2025 18:11:48 -0400 Subject: [PATCH] updated setuptools --- Python/pyproject.toml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Python/pyproject.toml b/Python/pyproject.toml index 17987d7..eb84efb 100644 --- a/Python/pyproject.toml +++ b/Python/pyproject.toml @@ -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)." readme = "README.md" requires-python = ">=3.12" -dependencies = [ - "httpx>=0.28.1", - "mcp[cli]>=1.4.1" -] +dependencies = ["httpx>=0.28.1", "mcp[cli]>=1.4.1"] [build-system] -requires = ["setuptools>=42", "wheel"] +requires = ["setuptools>=64.0.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools] -# These are the single-file modules at the root of the Python folder. py-modules = ["config", "server", "unity_connection"] - -# The "tools" subdirectory is a package. packages = ["tools"]