Merge branch 'VIS-17'

This commit is contained in:
Agata 2020-12-14 14:29:59 +01:00
commit 2dfc748f90
2 changed files with 20 additions and 0 deletions

18
win_venv/main.py Normal file
View File

@ -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()

View File

@ -0,0 +1,2 @@
PyQt5==5.15.2
PyQt5-sip==12.8.1