AnalyseMorphologique/main.py
Djalim Simaila 3b809b3881 📝 docs(README.md): add installation instructions for Windows, Linux, and Mac
 feat(README.md): add automated installation scripts for Windows, Linux, and Mac
The README file now includes instructions for both manual and automated installation of the program. Automated installation scripts have been added for Windows, Linux, and Mac to simplify the installation process. The scripts install the required dependencies using pip.
2023-05-22 15:25:07 +02:00

17 lines
402 B
Python

#!/usr/bin/env python3
"""
Created on Fri Apr 21 2023
@name: app.py
@desc: Main file for the application
@auth: Djalim Simaila
@e-mail: djalim.simaila@inrae.fr
"""
import sys
from PyQt5.QtWidgets import QApplication
from utils.gui.pyqt.main_window.MainWindow import MainWindow
if __name__ == "__main__":
app = QApplication(sys.argv)
window = MainWindow()
window.show()
app.exec()