delete: clean code

This commit is contained in:
gaoshuaixing
2025-01-13 18:21:22 +08:00
parent 2a1ac7d4fc
commit c83c57e618
226 changed files with 0 additions and 8543 deletions

View File

@@ -1,24 +0,0 @@
from cx_Freeze import setup, Executable
# 创建可执行文件的配置
executableApp = Executable(
script="main.py",
target_name="pyapp",
)
# 打包的参数配置
options = {
"build_exe": {
"build_exe":"./dist/",
"excludes": ["*.txt"],
"optimize": 2,
}
}
setup(
name="pyapp",
version="1.0",
description="python app",
options=options,
executables=[executableApp]
)