Created venv and base app
This commit is contained in:
parent
931fde64d5
commit
813aca6ed5
18
win_venv/main.py
Normal file
18
win_venv/main.py
Normal 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()
|
2
win_venv/requirements.txt
Normal file
2
win_venv/requirements.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
PyQt5==5.15.2
|
||||||
|
PyQt5-sip==12.8.1
|
Loading…
Reference in New Issue
Block a user