adaptive_cache / pyproject.toml
pragunk's picture
Upload 22 files
f023c17 verified
raw
history blame contribute delete
581 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "adaptive-cache-env"
version = "1.0.0"
description = "An OpenEnv-compliant adaptive cache eviction simulator."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=2.1.0",
"pydantic>=2.9.0",
"openai>=1.55.0",
"fastapi==0.110.0",
"uvicorn==0.27.1",
"openenv-core>=0.2.0",
"python-dotenv>=1.0.0",
"stable-baselines3[extra]>=2.2.1",
"gymnasium>=0.29.1"
]
[project.scripts]
server = "server.app:main"