Spaces:
Sleeping
Sleeping
File size: 563 Bytes
11f9523 0eb4f6f 11f9523 9e8a491 11f9523 0eb4f6f 11f9523 0eb4f6f 11f9523 0eb4f6f | 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 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["client", "server"]
py-modules = ["models"]
[project]
name = "openenv-container-port"
version = "0.1.0"
description = "Container yard RL environment"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
"websockets>=12.0",
"huggingface_hub>=0.20.0",
"pytest>=8.0.0",
]
[project.scripts]
server = "server.app:main"
|