HeadBallGame/setup.py

12 lines
279 B
Python
Raw Normal View History

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