CoolFace
Apppublic

RonyForAI/Mirage_DB_RL

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml43 linesDownload Raw Back to root
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7[build-system]8requires = ["setuptools>=45", "wheel"]9build-backend = "setuptools.build_meta"10 11[project]12name = "openenv-Mirage_RL"13version = "0.1.0"14description = "Mirage Rl environment for OpenEnv"15requires-python = ">=3.10"16dependencies = [17    # Core OpenEnv runtime (provides FastAPI server + HTTP client types)18    "openenv-core[core]>=0.2.2",19    # OpenAI client — required for inference.py baseline script20    "openai>=1.0.0",21    # RL agent dependencies (kept for local training experiments)22    "torch>=2.0.0",23    "numpy>=1.19.0",24    # UI25    "streamlit>=1.30.0",26]27 28[project.optional-dependencies]29dev = [30    "pytest>=8.0.0",31    "pytest-cov>=4.0.0",32]33 34[project.scripts]35# Server entry point36server = "Mirage_RL.server.app:main"37# Baseline inference script entry point38baseline = "inference:main"39 40[tool.setuptools]41include-package-data = true42packages = ["Mirage_RL", "Mirage_RL.server", "Mirage_RL.training"]43package-dir = { "Mirage_RL" = ".", "Mirage_RL.server" = "server", "Mirage_RL.training" = "training" }