File size: 892 Bytes
363abf3 | 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 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wildfire-containment-simulator"
version = "1.0.0"
description = "Grid-based wildfire containment RL environment (OpenEnv Finale — Theme 2)"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0",
"numpy>=1.24",
"openai>=1.0",
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"matplotlib>=3.7",
"imageio>=2.28",
"openenv-core>=0.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.scripts]
server = "server.app:main"
serve = "server.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["env*", "agents*", "graders*", "scripts*", "server*"]
[tool.setuptools.package-data]
"*" = ["openenv.yaml"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|