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.
Files changed (33) hide show
  1. {pyinstallerex-0.2.3/src/PyInstallerEx.egg-info → pyinstallerex-0.2.4}/PKG-INFO +5 -1
  2. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/README.md +4 -0
  3. pyinstallerex-0.2.4/bin/launcher_linux_arm64 +0 -0
  4. pyinstallerex-0.2.4/bin/launcher_linux_x86 +0 -0
  5. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/pyproject.toml +1 -1
  6. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/setup.py +4 -2
  7. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4/src/PyInstallerEx.egg-info}/PKG-INFO +5 -1
  8. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/SOURCES.txt +2 -0
  9. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/LICENSE +0 -0
  10. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/bin/launcher_windows.exe +0 -0
  11. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/setup.cfg +0 -0
  12. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/__init__.py +0 -0
  13. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/__main__.py +0 -0
  14. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/core/__init__.py +0 -0
  15. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/core/config.py +0 -0
  16. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/core/packager.py +0 -0
  17. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/server.py +0 -0
  18. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/__init__.py +0 -0
  19. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/compression.py +0 -0
  20. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/file_utils.py +0 -0
  21. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/icon_helper.py +0 -0
  22. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/logging.py +0 -0
  23. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/utils/system_utils.py +0 -0
  24. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/web/favicon.ico +0 -0
  25. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx/web/index.html +0 -0
  26. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/dependency_links.txt +0 -0
  27. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/entry_points.txt +0 -0
  28. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/not-zip-safe +0 -0
  29. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/requires.txt +0 -0
  30. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/src/PyInstallerEx.egg-info/top_level.txt +0 -0
  31. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/test/test_python27_compatibility.py +0 -0
  32. {pyinstallerex-0.2.3 → pyinstallerex-0.2.4}/test/test_python3x_compatibility.py +0 -0
  33. {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
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`)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "PyInstallerEx"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "扩展PyInstaller 使其拥有单文件安装功能不用每次都解压执行"
9
9
  readme = "README.md"
10
10
  requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
@@ -13,7 +13,7 @@ def read_readme():
13
13
 
14
14
  setup(
15
15
  name="pyinstallerex", # 包名(PyPI 上必须唯一)
16
- version="0.1.9", # 版本号(每次发布必须更新)
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": ["../bin/*", "web/*"], # 包含bin目录中的所有文件及web前端文件
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
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`)
@@ -2,6 +2,8 @@ LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
4
  setup.py
5
+ bin/launcher_linux_arm64
6
+ bin/launcher_linux_x86
5
7
  bin/launcher_windows.exe
6
8
  src/PyInstallerEx/__init__.py
7
9
  src/PyInstallerEx/__main__.py
File without changes
File without changes