Files
project_game/pyproject.toml
Cory cff4129336 Installed retro and got a cursor that moves...
Need to do:
-Populate 10 mines randomly
-Have the game end when a mine is selected (figure
out how to select something)
-Figure out an algorithm to reveal squares
-Figure out how to show numbers in revealed
squares
-Add flag functionality?
2024-05-18 20:24:36 -04:00

18 lines
340 B
TOML

[tool.poetry]
name = "project-game"
version = "0.1.0"
description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"]
readme = "README.md"
packages = [{include = "project_game"}]
[tool.poetry.dependencies]
python = "^3.11"
retro-games = "^0.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"