haxmas-day-9/pyproject.toml
2025-12-21 22:31:08 -07:00

30 lines
677 B
TOML

[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"]