We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 937a950 + 70a1684 commit e0ccea0Copy full SHA for e0ccea0
Python/pyproject.toml
@@ -1,10 +1,21 @@
1
[project]
2
-name = "unity"
+name = "unity-mcp"
3
version = "0.1.0"
4
-description = "Add your description here"
+description = "Unity MCP Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)."
5
readme = "README.md"
6
requires-python = ">=3.12"
7
dependencies = [
8
- "httpx>=0.28.1",
9
- "mcp[cli]>=1.4.1",
+ "httpx>=0.28.1",
+ "mcp[cli]>=1.4.1"
10
]
11
+
12
+[build-system]
13
+requires = ["setuptools>=42", "wheel"]
14
+build-backend = "setuptools.build_meta"
15
16
+[tool.setuptools]
17
+# These are the single-file modules at the root of the Python folder.
18
+py-modules = ["config", "server", "unity_connection"]
19
20
+# The "tools" subdirectory is a package.
21
+packages = ["tools"]
0 commit comments