proto-socket/python/pyproject.toml
toki fa273bcc26 feat: add Python implementation and cross-test support
- Add Python toki_socket package (base_client, communicator, tcp/ws client/server)
- Add protobuf message definitions for Python
- Add go_python.go cross-test implementation and python_go_client
- Add agent-task/python_impl plan and code review docs
- Update .gitignore for Python cache files with recursive patterns
2026-04-23 16:44:43 +09:00

28 lines
571 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "toki-socket"
version = "0.1.0"
description = "Python implementation of the Toki Socket binary socket protocol."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"protobuf>=4.25",
"websockets>=12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["toki_socket*"]
[tool.setuptools.package-data]
"toki_socket.packets" = ["*.proto", "*.pyi"]