diff --git a/.gitignore b/.gitignore index 68d5bd1..d505248 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f0981c9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +PyQt5>=5.4.0 +requests>=2.24.0 +cx-Freeze>=6.0 +pyinstaller>=3.6 \ No newline at end of file