creeper-adventure/site/pyproject.toml
2023-01-01 14:08:21 -06:00

37 lines
748 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "creeper_adventure"
description = "Creeper Adventure is a game I am making with my son."
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{ name = "Waylon Walker", email = "waylon@waylonwalker.com" },
]
dependencies = ['markata~=0.5.0.dev0']
dynamic = ["version"]
[tool.hatch.version]
path = "creeper_adventure/__about__.py"
[tool.hatch.envs.default]
dependencies = [
"pyinstrument",
]
[tool.hatch.envs.default.scripts]
clean = "markata clean"
build = "markata build"
tui = "markata tui"
serve = "python -m http.server 8000 --directory=markout"
clean-build = ['clean', 'build',]
clean-tui = ['clean', 'build', 'tui']