34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[build-system]
|
|
# 77+ for PEP 639 SPDX `license = "MIT"` + `license-files`.
|
|
requires = ["setuptools>=77"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "hetzner-arch-luks"
|
|
version = "1.0.0"
|
|
description = "End-to-end CLI (`hal`) for installing, encrypting, debugging and maintaining an Arch Linux server on Hetzner Dedicated hardware with software RAID, LUKS full-disk encryption, btrfs on LVM, and remote unlock via dropbear in the initramfs."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
authors = [{ name = "Kevin Veen-Birkenbach", email = "kevin@veen.world" }]
|
|
maintainers = [{ name = "Kevin Veen-Birkenbach", email = "kevin@veen.world" }]
|
|
license = "MIT"
|
|
license-files = ["LICENSE"]
|
|
urls = { Homepage = "https://veen.world", Repository = "https://github.com/kevinveenbirkenbach/hetzner-arch-luks" }
|
|
classifiers = [
|
|
"Environment :: Console",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
|
|
[project.scripts]
|
|
hal = "hetzner_arch_luks.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = { "" = "src" }
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
hetzner_arch_luks = ["resources/**/*.sh"]
|