feat: adding libtorrent again

This commit is contained in:
Chubby Granny Chaser 2024-06-27 14:51:13 +01:00
parent 11dffd1b7a
commit 63c13e17cb
No known key found for this signature in database
18 changed files with 1265 additions and 1208 deletions

20
torrent-client/setup.py Normal file
View file

@ -0,0 +1,20 @@
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options = {
"packages": ["libtorrent"],
"build_exe": "hydra-download-manager",
"include_msvcr": True
}
setup(
name="hydra-download-manager",
version="0.1",
description="Hydra",
options={"build_exe": build_exe_options},
executables=[Executable(
"torrent-client/main.py",
target_name="hydra-download-manager",
icon="build/icon.ico"
)]
)