- any distro from any distro (debian, ubuntu, arch, artix, void, alpine, fedora) - YAML config for distro, arch, init, packages, users, services, bootloader - each distro backend knows how to bootstrap itself - squashfs + xorriso for ISO generation - sexy CLI with banner and colored output - examples for Artix+Euri and Project Horizon
17 lines
408 B
TOML
17 lines
408 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.backends._legacy:_Backend"
|
|
|
|
[project]
|
|
name = "euri-mklive"
|
|
version = "0.1.0"
|
|
description = "Universal CLI ISO builder — any distro, from any distro"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["pyyaml>=6", "click>=8"]
|
|
|
|
[project.scripts]
|
|
euri-mklive = "euri_mklive.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["euri_mklive*"]
|