Update .gitignore, add requirements.txt

Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
2022-06-08 19:34:27 +07:00
parent fa552aa424
commit f8ed7ec27f
2 changed files with 19 additions and 15 deletions

30
.gitignore vendored
View File

@@ -1,24 +1,24 @@
## Ignoring PyCharm settings
## Ignore PyCharm settings
/.idea
## Ignoring Python complied files
/__pycache__
/module_parsing/__pycache__
/module_choice/__pycache__
/module_choice/form.py
/module_main/__pycache__
/module_main/form.py
/module_second/__pycache__
/module_second/form.py
/module_config_editor/__pycache__
/module_config_editor/form.py
## Ignore virtual enviroment
/venv
## Ignoring UPX
## Ignore Python complied files
*/__pycache__
## Ignore ui -> py transform
*/form.py
## Ignore UPX
/upx
## Ignoring build from cx_Freeze
## Ignore build from cx_Freeze
/prog_build
## Ignoring build files from PyInstaller
## Ignore build files from PyInstaller
/build
/dist
## Ignore .bak files
*.bak

4
requirements.txt Normal file
View File

@@ -0,0 +1,4 @@
PyQt5>=5.4.0
requests>=2.24.0
cx-Freeze>=6.0
pyinstaller>=3.6