Skip to content

Commit

Permalink
Add: GH Workflow for Windows
Browse files Browse the repository at this point in the history
Signed-off-by: NaveenKumar Namachivayam ⚡ <[email protected]>
  • Loading branch information
QAInsights committed Nov 23, 2023
1 parent 6ec0b76 commit 1429713
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions windows/setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import sys
from cx_Freeze import setup, Executable
from windows import __VERSION__
# from windows import __VERSION__

build_exe_options = {
"include_files": ["hamster.png"]
"include_files": ["img\hamster.png"]
}

base = "Win32GUI" if sys.platform == "win32" else None

setup(
name="Hamster",
version=__VERSION__,
version="0.0.1",
description="Instantly Launch JMeter Test Plans 🚀",
options={"build_exe": build_exe_options},
executables=[Executable("main.py", base=base)],
Expand Down

0 comments on commit 1429713

Please sign in to comment.