Fix CLI entry point path in pyproject.toml (#407)

Update mcp-for-unity script entry point from "main:main" to "src.main:main" to match the actual module structure after moving main.py into the src directory.
main
Marcus Sanatan 2025-11-28 22:43:00 -04:00 committed by GitHub
parent adfc6f5e84
commit 06c1dfe2f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ dev = [
] ]
[project.scripts] [project.scripts]
mcp-for-unity = "main:main" mcp-for-unity = "src.main:main"
[build-system] [build-system]
requires = ["setuptools>=64.0.0", "wheel"] requires = ["setuptools>=64.0.0", "wheel"]