ArjunSharmaSSS's picture
fix(server): make server.app:main a callable entry point
4b86450
raw
history blame contribute delete
586 Bytes
[project]
name = "adaptive-traffic-controller"
version = "1.0.0"
description = "OpenEnv environment — LLM agent controls backend traffic throttling to prevent server crashes"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=2.7.0",
"openai>=1.30.0",
"httpx>=0.27.0",
"numpy>=1.26.0",
"pyyaml>=6.0.1",
"gradio>=4.30.0",
"plotly>=5.22.0",
"openenv-core",
]
[project.scripts]
server = "server.app:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"