Initial commit for the more modular rewrite of the Photobooth.

Basic Qt5-GUI implemented
Config-File support implemented
Basic settings dialog to change config implemented
NO Photobooth functionality, yet
This commit is contained in:
Balthasar Reuter
2018-03-17 14:54:08 +01:00
parent 1da57c5bfc
commit ade6d05aee
7 changed files with 371 additions and 0 deletions

8
photobooth/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys, Photobooth
if __name__ == "__main__":
sys.exit(Photobooth.main(sys.argv))