datacenter-openenv / pyproject.toml
Rohannk's picture
Update pyproject.toml
011de36 verified
Raw
History Blame Contribute Delete
478 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "smart-datacenter-cooling"
version = "0.1.0"
description = "OpenEnv simulation for Smart Data Center Cooling System"
authors = [
{name = "Tensor Tacos"}
]
readme = "Readme.md"
requires-python = ">=3.10"
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"requests",
"openai",
"openenv-core>=0.2.0"
]
[project.scripts]
server = "server.app:main"