Files
chat_grid/server/pyproject.toml

20 lines
348 B
TOML
Raw Normal View History

2026-02-20 08:16:43 -05:00
[project]
name = "chat-grid-server"
version = "0.1.0"
description = "Chat Grid signaling server"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.10.4",
"websockets>=15.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.2",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]