15 lines
291 B
Python
15 lines
291 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
ARTOS Launcher - Start the docking GUI
|
|
"""
|
|
import sys
|
|
import os
|
|
|
|
# Add parent directory to path
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
from pymsc.gui.main_docking_window import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|