Files
texas_hold_x/pyproject.toml
T
2026-05-13 17:35:46 +08:00

20 lines
542 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"
texas-holdem-replay = "texas_holdem_replay.server:main"
[tool.setuptools.package-data]
texas_holdem_replay = ["static/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]