From 4876594720e1e58a363d3e5a5b33d2037c5d02ea Mon Sep 17 00:00:00 2001 From: Fhilipe Coelho Date: Sat, 20 Apr 2024 13:33:32 -0300 Subject: [PATCH] build: add icon to client torrent exe --- torrent-client/setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/torrent-client/setup.py b/torrent-client/setup.py index e098ec80..b26513b1 100644 --- a/torrent-client/setup.py +++ b/torrent-client/setup.py @@ -12,5 +12,9 @@ setup( version="0.1", description="Hydra Torrent Client", options={"build_exe": build_exe_options}, - executables=[Executable("torrent-client/main.py", target_name="hydra-download-manager")] + executables=[Executable( + "torrent-client/main.py", + target_name="hydra-download-manager", + icon="images/icon.ico" + )] )