| [build-system] | |
| requires = ["setuptools>=64", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "unity-agent" | |
| version = "0.1.0" | |
| description = "A Python agent that generates complete Unity game projects (C#, .unity scenes, project config) you can open and play in any Unity 2022+ installation." | |
| readme = "README.md" | |
| requires-python = ">=3.9" | |
| license = { text = "MIT" } | |
| authors = [{ name = "Unity Agent" }] | |
| keywords = ["unity", "unity3d", "game-development", "code-generation", "agent"] | |
| [project.scripts] | |
| unity-agent = "unity_agent.__main__:main" | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| include = ["unity_agent*"] | |
| [tool.setuptools.package-data] | |
| "unity_agent.knowledge" = ["entries/*.md", "README.md"] | |