Spaces:
Sleeping
Sleeping
File size: 651 Bytes
c90be96 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "dataselectenv"
version = "0.1.0"
description = "RL environment for optimal data selection under cost, noise, and diversity constraints"
requires-python = ">=3.10"
dependencies = [
"scikit-learn",
"numpy",
"pydantic",
"fastapi",
"uvicorn[standard]",
"openai",
"websockets",
"python-dotenv",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = ["pytest", "httpx"]
[tool.openenv]
env_id = "DataSelectEnv-v0"
entry_point = "server:app"
|