From 813aca6ed5624d95716ac6be4b4ac580851dbd91 Mon Sep 17 00:00:00 2001 From: Agata Date: Mon, 14 Dec 2020 14:28:42 +0100 Subject: [PATCH] Created venv and base app --- win_venv/main.py | 18 ++++++++++++++++++ win_venv/requirements.txt | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 win_venv/main.py create mode 100644 win_venv/requirements.txt 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