12 lines
279 B
Python
12 lines
279 B
Python
|
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
|
||
|
)
|