feat: adding aria2c

This commit is contained in:
Chubby Granny Chaser 2024-11-28 19:16:05 +00:00
parent c6d4b658a1
commit d7e06d6622
No known key found for this signature in database
11 changed files with 844 additions and 0 deletions

20
python_rpc/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-python-rpc",
"include_msvcr": True
}
setup(
name="hydra-python-rpc",
version="0.1",
description="Hydra",
options={"build_exe": build_exe_options},
executables=[Executable(
"python_rpc/main.py",
target_name="hydra-python-rpc",
icon="build/icon.ico"
)]
)