-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 2.36 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (77 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "godot-ai"
version = "2.7.2"
description = "Production-grade MCP server and AI tools for the Godot engine"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
authors = [{ name = "Godot AI contributors" }]
keywords = [
"godot",
"godot-engine",
"mcp",
"model-context-protocol",
"ai",
"llm",
"gamedev",
"editor-plugin",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Environment :: Console",
"Framework :: AsyncIO",
]
dependencies = [
# fastmcp 3.3.0/3.3.1 ship a circular import in fastmcp.server that surfaces
# as "FastMCP server support is not installed" at pytest collection time.
# Fixed in 3.4.0 (3.4.2 verified green in CI), so the range allows 3.4.x
# again while still excluding the broken 3.3.x.
"fastmcp>=3.0.0,!=3.3.*,<3.5.0",
"websockets>=13.0",
"pydantic>=2.0",
]
[project.urls]
Homepage = "https://github.com/hi-godot/godot-ai"
Repository = "https://github.com/hi-godot/godot-ai"
Issues = "https://github.com/hi-godot/godot-ai/issues"
Documentation = "https://github.com/hi-godot/godot-ai#readme"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=6.0",
"ruff>=0.8",
# Used by script/ci-game-capture-smoke to decode PNG frames from the
# running game and assert the expected colored quadrants are present.
"pillow>=10.0",
]
build = [
"pyinstaller>=6.0",
]
[project.scripts]
godot-ai = "godot_ai:main"
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = ["src"]
markers = [
"historical_constraint: documentation-only self-update tests for old shipped runners; skipped unless explicitly enabled",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]