feat: adding pycache to gitignore

This commit is contained in:
Hydra 2024-04-24 10:22:12 +01:00
parent 18de7ca671
commit ca1b9b2170
No known key found for this signature in database
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
}