forked from AmulyaParitosh/Component_Library_Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
executable file
·26 lines (21 loc) · 839 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/python3
# SPDX-License-Identifier: MIT
# --------------------------------------------------------------
# | |
# | Copyright 2023 - 2023, Amulya Paritosh |
# | |
# | This file is part of Component Library Plugin for FreeCAD. |
# | |
# | This file was created as a part of |
# | Google Summer Of Code Program - 2023 |
# | |
# --------------------------------------------------------------
import sys
from PySide2.QtWidgets import QApplication
from PySide2 import QtCore
from src.main import independent_local_dev_app
if __name__ == "__main__":
QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_ShareOpenGLContexts)
app = QApplication(sys.argv)
addon = independent_local_dev_app()
sys.exit(app.exec_())