feat: demo-js v4

This commit is contained in:
gaoshuaixing
2025-01-13 18:22:57 +08:00
parent c83c57e618
commit 57e3e0a8c8
133 changed files with 6079 additions and 0 deletions

24
python/setup.py Normal file
View File

@@ -0,0 +1,24 @@
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]
)