deploy files

This commit is contained in:
End 2025-12-21 22:31:08 -07:00
parent 8fc099ab67
commit fd95a85368
No known key found for this signature in database
7 changed files with 32 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.pypirc

1
README.md Normal file
View file

@ -0,0 +1 @@
haxmas day 9 tui cyberpunk advent calendar

BIN
dist/proot_advent-1.0.0-py3-none-any.whl vendored Normal file

Binary file not shown.

BIN
dist/proot_advent-1.0.0.tar.gz vendored Normal file

Binary file not shown.

30
pyproject.toml Normal file
View file

@ -0,0 +1,30 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "proot_advent"
version = "1.0.0"
authors = [
{ name="End N", email="contact@endoftimee.tech" },
]
description = "Cyberpunk protogen advent calendar TUI"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"textual",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
protogen-advent = "proot_advent.main:main"
[project.urls]
Homepage = "https://github.com/System-End/haxmas-day-9"
[tool.hatch.build.targets.wheel]
packages = ["src/proot_advent"]

View file