Spaces:
Running
Running
File size: 599 Bytes
136ea72 | 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 | [project]
name = "sentinel-env"
version = "1.0.0"
description = "OpenEnv-compatible multi-agent trust calibration environment."
requires-python = ">=3.10,<3.14"
dependencies = [
"fastapi>=0.115,<1",
"uvicorn[standard]>=0.35,<1",
"pydantic>=2.7,<3",
"httpx>=0.28.1,<1",
"python-multipart==0.0.9",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = ["pytest>=8.0.0"]
training = [
"trl",
"transformers",
"datasets",
"accelerate",
"unsloth",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
|