diff --git a/win_venv/main.py b/win_venv/main.py new file mode 100644 index 0000000..bceba3a --- /dev/null +++ b/win_venv/main.py @@ -0,0 +1,18 @@ +#import tkinter as tk +import sys +import os +from PyQt5.QtWidgets import QApplication, QWidget + +def main(): + app = QApplication(sys.argv) + + w = QWidget() + w.resize(250, 150) + w.move(300, 300) + w.setWindowTitle('Simple') + w.show() + + sys.exit(app.exec_()) + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/win_venv/requirements.txt b/win_venv/requirements.txt new file mode 100644 index 0000000..843678c --- /dev/null +++ b/win_venv/requirements.txt @@ -0,0 +1,2 @@ +PyQt5==5.15.2 +PyQt5-sip==12.8.1