fire-rescue-simulator-game / pyproject.toml
arkai2025's picture
first version
ec380bc
raw
history blame
631 Bytes
[project]
name = "fire-rescue-mcp"
version = "0.2.0"
description = "Fire rescue simulation with MCP integration and LLM advisor"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"openai>=1.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"gradio>=6.0.1",
"pyyaml>=6.0.0",
]
[project.scripts]
fire-rescue-mcp = "fire_rescue_mcp.mcp_server:run_server"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["fire_rescue_mcp"]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]