set events
This commit is contained in:
parent
ff84817732
commit
1f844dae9d
15 changed files with 1448 additions and 1 deletions
37
site/pyproject.toml
Normal file
37
site/pyproject.toml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
[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']
|
||||
Loading…
Add table
Add a link
Reference in a new issue