AI_Diplomacy/bot_client/pyproject.toml
Tyler Marques aa0e5852e5
WIP: Starting work on running games via websocket
First crack, mostly Claude, on running each agent as an individual
connection to the server via WebSocket.
2025-07-29 15:57:42 -07:00

30 lines
610 B
TOML

[project]
name = "bot-client"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.12.13",
"anthropic>=0.54.0",
"diplomacy",
"dotenv>=0.9.9",
"google-generativeai>=0.8.5",
"json-repair>=0.46.2",
"json5>=0.12.0",
"loguru>=0.7.3",
"openai>=1.87.0",
"pydantic>=2.11.7",
"pydantic-settings>=2.9.1",
"tornado>=6.5.1",
]
[tool.uv.sources]
diplomacy = { path = "../diplomacy", editable = true }
[tool.pyright]
extraPaths = [".."]
include = [".", ".."]
[tool.ruff]
src = ["..", "."]