openenv-image-optimizer / pyproject.toml
Tanishq71's picture
Upload 4 files
446ddc0 verified
Raw
History Blame Contribute Delete
460 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-image-optimizer"
version = "1.0.0"
description = "An RL environment where an agent acts as an MLOps orchestrator."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pydantic",
"openai",
"httpx",
"fastapi",
"uvicorn",
"openenv-core>=0.2.0"
]
[project.scripts]
server = "server.app:main"