This commit is contained in:
gaoshuaixing
2024-03-07 14:55:54 +08:00
parent 3848544d12
commit 6c09bd7414
2 changed files with 26 additions and 2 deletions

View File

@@ -52,8 +52,8 @@ module.exports = {
},
python_w: {
directory: './python',
cmd: 'pyinstaller',
args: ['-n=pyapp', '-F', './main.py'],
cmd: 'python',
args: ['./setup.py', 'build'],
},
python_m: {
directory: './python',

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]
)