-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
23 lines (21 loc) · 787 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# Python Project Manager v1.3.0 #
# #
# Copyright 2016, PedroHenriques #
# http://www.pedrojhenriques.com #
# https://github.com/PedroHenriques #
# #
# Free to use under the MIT license. #
# http://www.opensource.org/licenses/mit-license.php #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
import traceback, os
from classes import Application
# code that starts the entire application
try :
# instantiate the application's main class
app = Application.Application(os.path.dirname(os.path.realpath(__file__)) + "\\data")
except Exception as e :
traceback.print_exc()
print("\n")