16 lines
334 B
Python
Executable File
16 lines
334 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Launch the Tkinter front-end for run_multifold."""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
REPO_ROOT = Path(__file__).resolve().parents[1]
|
|
if str(REPO_ROOT) not in sys.path:
|
|
sys.path.insert(0, str(REPO_ROOT))
|
|
|
|
from classes.frontend import launch_frontend
|
|
|
|
|
|
if __name__ == "__main__":
|
|
launch_frontend()
|