Spaces:
Running
Running
File size: 943 Bytes
80d8c84 | 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 32 33 34 35 36 37 38 39 40 41 42 43 | [build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "replicalab"
version = "0.1.0"
description = "ReplicaLab foundation package for multi-agent scientific replication experiments."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "ReplicaLab Team" },
]
dependencies = [
"pydantic>=2.7,<3.0",
"fastapi>=0.115,<1.0",
"uvicorn[standard]>=0.34,<1.0",
"websockets>=15.0,<17.0",
"httpx>=0.27,<1.0",
"openenv-core[core]>=0.2.1,<0.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9.0",
"pytest-cov>=5.0,<6.0",
"pytest-asyncio>=0.23,<1.0",
"httpx>=0.27,<1.0",
"ruff>=0.11,<0.12",
"mypy>=1.15,<2.0",
]
[tool.setuptools.packages.find]
include = ["replicalab*"]
[project.scripts]
server = "server.app:main"
replicalab-train = "replicalab.training.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
|