2025-03-02 06:22:01 +00:00
|
|
|
from cx_Freeze import setup, Executable
|
|
|
|
|
|
|
|
# 添加你的脚本名称和其他配置
|
2025-03-02 06:30:01 +00:00
|
|
|
executables = [Executable("main.py"),Executable("show_avatar.py",base="Win32GUI")]
|
2025-03-02 06:22:01 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="HeadBallGame",
|
|
|
|
version="0.1",
|
|
|
|
description="HeadBallGame from Zengtudor",
|
|
|
|
executables=executables
|
|
|
|
)
|