generated from mwc/project_game
24 lines
447 B
TOML
24 lines
447 B
TOML
[project]
|
|
name = "project-game"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
|
|
]
|
|
requires-python = ">=3.10, <4.0"
|
|
dependencies = [
|
|
"retro-games>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
play = "game:play"
|
|
|
|
[tool.retro]
|
|
author = ""
|
|
description = ""
|
|
instructions = ""
|
|
result_file = "result.json"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0, <3.0.0"]
|
|
build-backend = "poetry.core.masonry.api" |