mirror of
https://github.com/System-End/haxmas-day-9.git
synced 2026-04-19 20:55:15 +00:00
30 lines
677 B
TOML
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"]
|