PyInstallerEx 0.2.3__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyinstallerex-0.2.3/src/PyInstallerEx.egg-info → pyinstallerex-0.2.4}/PKG-INFO +5 -1
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/README.md +4 -0
- pyinstallerex-0.2.4/bin/launcher_linux_arm64 +0 -0
- pyinstallerex-0.2.4/bin/launcher_linux_x86 +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/pyproject.toml +1 -1
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/setup.py +4 -2
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4/src/PyInstallerEx.egg-info}/PKG-INFO +5 -1
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/SOURCES.txt +2 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/LICENSE +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/bin/launcher_windows.exe +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/setup.cfg +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/__init__.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/__main__.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/core/__init__.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/core/config.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/core/packager.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/server.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/__init__.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/compression.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/file_utils.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/icon_helper.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/logging.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/system_utils.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/web/favicon.ico +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/web/index.html +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/dependency_links.txt +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/entry_points.txt +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/not-zip-safe +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/requires.txt +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/top_level.txt +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/test/test_python27_compatibility.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/test/test_python3x_compatibility.py +0 -0
- {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/test/test_rust_launcher.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyInstallerEx
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: 扩展PyInstaller 使其拥有单文件安装功能不用每次都解压执行
|
|
5
5
|
Home-page: https://gitee.com/iiixxxiii/py-installer-ex
|
|
6
6
|
Author: lixin
|
|
@@ -522,6 +522,10 @@ script\install.bat
|
|
|
522
522
|
|
|
523
523
|
## 更新日志
|
|
524
524
|
|
|
525
|
+
- 2026-07-11 V 0.2.4
|
|
526
|
+
- 优化 `package.sh` 多环境下打包
|
|
527
|
+
|
|
528
|
+
|
|
525
529
|
- 2026-07-11 V 0.2.3
|
|
526
530
|
- 新增 **命令行参数透传**:Rust 启动器自动将命令行参数传递给内部程序
|
|
527
531
|
- 新增 **示例 07**:`07 - hello_world - parameter` 演示参数透传功能(`--add1`、`--add2`)
|
|
@@ -487,6 +487,10 @@ script\install.bat
|
|
|
487
487
|
|
|
488
488
|
## 更新日志
|
|
489
489
|
|
|
490
|
+
- 2026-07-11 V 0.2.4
|
|
491
|
+
- 优化 `package.sh` 多环境下打包
|
|
492
|
+
|
|
493
|
+
|
|
490
494
|
- 2026-07-11 V 0.2.3
|
|
491
495
|
- 新增 **命令行参数透传**:Rust 启动器自动将命令行参数传递给内部程序
|
|
492
496
|
- 新增 **示例 07**:`07 - hello_world - parameter` 演示参数透传功能(`--add1`、`--add2`)
|
|
Binary file
|
|
Binary file
|
|
@@ -13,7 +13,7 @@ def read_readme():
|
|
|
13
13
|
|
|
14
14
|
setup(
|
|
15
15
|
name="pyinstallerex", # 包名(PyPI 上必须唯一)
|
|
16
|
-
version="0.
|
|
16
|
+
version="0.2.4", # 版本号(每次发布必须更新)
|
|
17
17
|
description=u"扩展PyInstaller 使其拥有单文件安装功能 不用每次都解压执行",
|
|
18
18
|
long_description=read_readme(),
|
|
19
19
|
long_description_content_type="text/markdown",
|
|
@@ -25,11 +25,13 @@ setup(
|
|
|
25
25
|
packages=find_packages(where="src"), # 自动发现src目录下的子包
|
|
26
26
|
include_package_data=True, # 包含包数据文件
|
|
27
27
|
package_data={
|
|
28
|
-
"PyInstallerEx": ["
|
|
28
|
+
"PyInstallerEx": ["web/*"], # 包含web前端文件
|
|
29
29
|
},
|
|
30
30
|
data_files=[
|
|
31
31
|
('bin', [
|
|
32
32
|
'bin/launcher_windows.exe',
|
|
33
|
+
'bin/launcher_linux_x86',
|
|
34
|
+
'bin/launcher_linux_arm64',
|
|
33
35
|
])
|
|
34
36
|
],
|
|
35
37
|
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", # 兼容 2.7 和 3.4+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyInstallerEx
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: 扩展PyInstaller 使其拥有单文件安装功能不用每次都解压执行
|
|
5
5
|
Home-page: https://gitee.com/iiixxxiii/py-installer-ex
|
|
6
6
|
Author: lixin
|
|
@@ -522,6 +522,10 @@ script\install.bat
|
|
|
522
522
|
|
|
523
523
|
## 更新日志
|
|
524
524
|
|
|
525
|
+
- 2026-07-11 V 0.2.4
|
|
526
|
+
- 优化 `package.sh` 多环境下打包
|
|
527
|
+
|
|
528
|
+
|
|
525
529
|
- 2026-07-11 V 0.2.3
|
|
526
530
|
- 新增 **命令行参数透传**:Rust 启动器自动将命令行参数传递给内部程序
|
|
527
531
|
- 新增 **示例 07**:`07 - hello_world - parameter` 演示参数透传功能(`--add1`、`--add2`)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|