File size: 649 Bytes
b641d3d | 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 | [project]
name = "distributed-systems-debug-env"
version = "1.0.0"
description = "OpenEnv distributed systems debugging environment"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.0",
"pydantic>=2.11.0",
"openenv-core>=0.2.0",
"openai>=1.30.0",
"httpx>=0.27.0"
]
[project.scripts]
server = "server.app:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["server*"]
exclude = ["mesh*", "tests*"] |