CoolFace
Apppublic

channu07/microgrid-env-v2

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml27 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68"]3build-backend = "setuptools.build_meta"4 5[project]6name = "microgrid-env-v2"7version = "2.0.0"8description = "Stochastic RL benchmark for distributed energy systems under uncertainty"9requires-python = ">=3.10"10dependencies = [11    "fastapi>=0.104.0",12    "uvicorn[standard]>=0.24.0",13    "pydantic>=2.0.0",14    "numpy>=1.24.0",15    "gymnasium>=0.29.0",16    "websockets>=12.0",17    "httpx>=0.25.0",18    "openenv-core>=0.1.0",19    "openai>=1.0.0",20]21 22[project.scripts]23server = "server.app:main"24 25[tool.setuptools.packages.find]26where = ["."]27include = ["microgrid_env_v2*", "server*"]