game-builder-ai / pyproject.toml
AnshulRaj's picture
Sync pyproject.toml from GitHub project
94077ba verified
Raw
History Blame Contribute Delete
528 Bytes
[project]
name = "game-builder"
version = "0.1.0"
description = "AI-powered arcade game builder — Build Small Hackathon Track 2"
requires-python = ">=3.11"
dependencies = [
"gradio>=6.16.0,<7",
"huggingface_hub>=1.0.0,<2",
"ollama>=0.4.0",
"pydantic>=2.10.0",
"python-dotenv>=1.0.0",
"smolagents[litellm]>=1.20.0",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-mock>=3.14.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["integration: requires live Ollama instance"]