Skip to content

Commit

Permalink
updated setup
Browse files Browse the repository at this point in the history
  • Loading branch information
PK-cod3ch3mist committed Nov 29, 2023
1 parent 06a4cea commit f134cbb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Binary file added assets/icon/icon.ico
Binary file not shown.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@

import cx_Freeze

executables = [cx_Freeze.Executable("main.py")]
executables = [
cx_Freeze.Executable(
script="main.py", icon="assets/icon/icon.ico", target_name="The Eighth Run"
),
]

cx_Freeze.setup(
name="The Eighth Run",
version="1.0",
description="A game made for the GitHub Game Off 2023",
options={"build_exe": {"packages": ["pygame"], "include_files": ["assets"]}},
executables=executables,
)

0 comments on commit f134cbb

Please sign in to comment.