-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 998 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentic-game-builder"
version = "2.1.0"
description = "Agentic Game-Builder AI — converts NL game ideas into playable browser games via CLI or MCP"
requires-python = ">=3.11"
dependencies = [
"typer[all]>=0.9.0",
"litellm>=1.30.0",
"instructor>=1.0.0",
"pydantic>=2.0.0",
"structlog>=23.0.0",
"rich>=13.0.0",
"playwright>=1.40.0",
"python-dotenv>=1.0.0",
"mcp[cli]>=1.26.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
]
production = [
"prometheus-client>=0.19.0",
"redis>=5.0.0",
]
[project.scripts]
game-builder = "app.main:app"
game-builder-mcp = "app.mcp_server:main"
[tool.setuptools.packages.find]
include = ["app*", "tests*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 100