Merge pull request #1 from scott------/patch-1

fix: update pyproject.toml to resolve packaging error
main
Justin P Barnett 2025-03-18 15:33:14 -04:00 committed by GitHub
commit e0ccea04be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 4 deletions

View File

@ -1,10 +1,21 @@
[project]
name = "unity"
name = "unity-mcp"
version = "0.1.0"
description = "Add your description here"
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",
"mcp[cli]>=1.4.1"
]
[build-system]
requires = ["setuptools>=42", "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"]