Files
pkgmgr/main.py

15 lines
284 B
Python
Raw Normal View History

2025-03-06 12:40:50 +01:00
#!/usr/bin/env python3
import sys
from pathlib import Path
# Ensure local src/ overrides installed package
ROOT = Path(__file__).resolve().parent
SRC = ROOT / "src"
if SRC.is_dir():
sys.path.insert(0, str(SRC))
2025-03-06 12:40:50 +01:00
from pkgmgr.cli import main
2025-03-06 12:45:53 +01:00
2025-03-04 13:17:57 +01:00
if __name__ == "__main__":
main()