15 lines
367 B
Python
15 lines
367 B
Python
"""
|
|
Kabellaengen Library Package
|
|
|
|
Dieses Package enthält alle Module für die Kabelrouting-Automatisierung.
|
|
"""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# Füge das lib Verzeichnis zum Python-Pfad hinzu,
|
|
# damit relative Imports zwischen den Modulen funktionieren
|
|
_lib_dir = Path(__file__).parent
|
|
if str(_lib_dir) not in sys.path:
|
|
sys.path.insert(0, str(_lib_dir))
|