prothamd-adaptive-world-env / pyproject.toml
PROTHAM
Initial commit: AdaptiveWorld Env v2.0 (Round 2)
7043cc6
Raw
History Blame Contribute Delete
645 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "adaptive-world-env"
version = "2.0.0"
description = "OpenEnv environment for training agents to detect and adapt to mid-episode world mutations"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.3",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"httpx>=0.27.0",
"python-dotenv>=1.0.0",
"openai>=1.0.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21"]
[project.scripts]
server = "server.app:main"
[tool.setuptools.packages.find]
where = ["."]