mirror of
https://github.com/fatiando/moulder.git
synced 2025-12-22 02:51:07 +08:00
16 lines
293 B
Python
16 lines
293 B
Python
import sys
|
|
from PyQt5.QtWidgets import QApplication
|
|
from .main_window import MoulderApp
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
app.setApplicationName("Moulder")
|
|
moulder_app = MoulderApp()
|
|
moulder_app.show()
|
|
sys.exit(app.exec_())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|