CoolFace
Apppublic

ashucode/metaxhuggingfacehackathon

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml28 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68"]3build-backend = "setuptools.backends.legacy:build"4 5[project]6name = "supermarket-nav"7version = "1.0.0"8description = "Grid-world supermarket RL environment for LLM agent evaluation"9requires-python = ">=3.10"10dependencies = [11    "fastapi>=0.110.0",12    "uvicorn[standard]>=0.29.0",13    "pydantic>=2.0.0",14    "numpy>=1.26.0",15    "requests>=2.31.0",16    "openai>=1.30.0",17    "openenv-core>=0.2.0",18]19 20[project.optional-dependencies]21dev = ["pytest", "httpx"]22 23[tool.setuptools.packages.find]24where = ["."]25include = ["supermart_env*"]26 27[project.scripts]28server = "server.app:main"