mirror of
https://github.com/hydralauncher/hydra.git
synced 2024-11-13 14:09:24 +00:00
21 lines
515 B
Python
21 lines
515 B
Python
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"
|
|
)]
|
|
)
|