Add build script.

This commit is contained in:
luxick
2018-02-24 14:06:59 +01:00
parent af57942ad8
commit f1160ddb55
12 changed files with 868 additions and 347 deletions

10
dsst/__main__.py Normal file
View File

@@ -0,0 +1,10 @@
import sys
import os.path
# Add current directory to python path
path = os.path.realpath(os.path.abspath(__file__))
sys.path.insert(0, os.path.dirname(path))
from dsst_gtk3 import gtk_ui
if __name__ == '__main__':
gtk_ui.main()