manuskript/bin/test_io.py
TheJackiMonster ef119917cf
Connected io and gtk for general info and summary
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
2021-05-17 00:51:46 +02:00

17 lines
328 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import sys
realpath = os.path.realpath(__file__)
sys.path.insert(1, os.path.join(os.path.dirname(realpath), '..'))
from manuskript.ui import MainWindow
path = os.path.join(sys.path[1], "sample-projects/book-of-acts")
window = MainWindow(path + ".msk")
window.run()