Files
texas_hold_x/pyproject.toml
T
2026-05-11 21:09:55 +08:00

16 lines
419 B
TOML

[project]
name = "texas-hold-x"
version = "0.1.0"
description = "A standard-library Texas Hold'em service for multi-agent poker games."
requires-python = ">=3.11"
dependencies = []
[project.scripts]
texas-holdem-server = "texas_holdem.server:main"
texas-holdem-human = "texas_holdem.human_client:main"
texas-holdem-ai = "texas_holdem.ai_client:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]