Files
project_game/pyproject.toml
jandrews 39695c2d92 updated
2026-01-13 12:57:09 -05:00

31 lines
867 B
TOML

[project]
name = "blackjack"
version = "0.1.0"
description = "draw cards or "hit" and see if you have a more points than the dealer hand. "
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"retro-games (>=1.1.0,<2.0.0)"
]
[project.scripts]
play = "game:play"
[tool.retro]
author = "jacob"
description = "draw cards or "hit" and see if you have more points than the dealer hand."
instructions = "draw cards and make sure not to have more than 21 points or a lower total amount of points than the dealer."hit" when you are cofident with your cards to see if you win the round"
result_file = "result.json"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false