generated from mwc/project_game
27 lines
634 B
TOML
27 lines
634 B
TOML
[project]
|
|
name = "Pac-Nom"
|
|
version = "0.1.0"
|
|
description = "Eat all the pellets and don't get caught"
|
|
authors = [
|
|
{name="Jacob Bayati", email="jacobbayat28@lockportschools.net"}
|
|
]
|
|
requires-python = ">=3.10,<4.0"
|
|
dependencies = [
|
|
"retro-games>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
play = "game.py"
|
|
|
|
[tool.retro]
|
|
author = "Jacob"
|
|
description = "Eat all the pellets and do not get caught. if you get all of them you win!"
|
|
instructions = "Joystick for up,down,left and right"
|
|
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 |