feat: adding pycache to gitignore

This commit is contained in:
Hydra 2024-04-24 10:22:12 +01:00
parent 1db5a9c295
commit fc6cd710ac
15 changed files with 1084 additions and 1319 deletions

View file

@ -3,7 +3,7 @@ from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {
"packages": ["libtorrent"],
"build_exe": "resources/dist/hydra-download-manager",
"build_exe": "hydra-download-manager",
"include_msvcr": True
}