File size: 724 Bytes
40c0886 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [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"]
|