15 lines
371 B
TOML
15 lines
371 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"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|