CoolFace
Apppublic

Rohannk/datacenter-openenv

sourceHugging Facemitupdated 6mo agoView on Hugging Face
1likes
pyproject.toml24 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=61.0"]3build-backend = "setuptools.build_meta"4 5[project]6name = "smart-datacenter-cooling"7version = "0.1.0"8description = "OpenEnv simulation for Smart Data Center Cooling System"9authors = [10    {name = "Tensor Tacos"}11]12readme = "Readme.md"13requires-python = ">=3.10"14dependencies = [15    "fastapi",16    "uvicorn",17    "pydantic",18    "requests",19    "openai",20    "openenv-core>=0.2.0"21]22 23[project.scripts]24server = "server.app:main"