inventory_env / pyproject.toml
saketh1201's picture
Upload folder using huggingface_hub
ff7be06 verified
raw
history blame contribute delete
551 Bytes
[project]
name = "inventory-env"
version = "0.1.0"
description = "Retail Inventory Optimization RL Environment for OpenEnv"
requires-python = ">=3.10"
dependencies = [
"openenv-core[core]>=0.2.0",
"fastapi>=0.115.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"numpy>=1.24.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["server"]
[project.scripts]
server = "server.app:main"