fix: syntax errors in all backends, wrong import path, entry point

- fix f-string escape bug in all 5 backends (user password handling)
- fix void.py import: from ..dinit (not .dinit — dinit.py is at package root)
- fix pyproject.toml entry point: cli:cli not cli:main
- add .gitignore for __pycache__
This commit is contained in:
2026-08-26 20:39:42 +02:00
parent e0c78f476d
commit 5c65baeb27
7 changed files with 17 additions and 7 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ requires-python = ">=3.10"
dependencies = ["pyyaml>=6", "click>=8"]
[project.scripts]
euri-mklive = "euri_mklive.cli:main"
euri-mklive = "euri_mklive.cli:cli"
[tool.setuptools.packages.find]
include = ["euri_mklive*"]