Skip to content

Commit 3f5ee47

Browse files
committed
Update README, add how to use
添加PyPI相关信息; 添加简单的使用说明;
1 parent 7883374 commit 3f5ee47

1 file changed

Lines changed: 25 additions & 6 deletions

File tree

README.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
# Py2exe-GUI
22

3-
![GitHub Repo stars](https://img.shields.io/github/stars/muziing/Py2exe-GUI)
4-
![GitHub forks](https://img.shields.io/github/forks/muziing/Py2exe-GUI)
5-
![License](https://img.shields.io/github/license/muziing/Py2exe-GUI)
6-
![GitHub Last Commit](https://img.shields.io/github/last-commit/muziing/Py2exe-GUI)
3+
更易用的 Python 打包工具!
74

5+
![GitHub Repo stars](https://img.shields.io/github/stars/muziing/Py2exe-GUI)
6+
[![PyPI Version](https://img.shields.io/pypi/v/py2exe-gui)](https://pypi.org/project/py2exe-gui/)
7+
[![License](https://img.shields.io/github/license/muziing/Py2exe-GUI)](https://www.gnu.org/licenses/gpl-3.0.html)
8+
![Python version](https://img.shields.io/pypi/pyversions/py2exe-gui)
89
[![PySide Version](https://img.shields.io/badge/PySide-6.2-blue)](https://doc.qt.io/qtforpython/index.html)
910
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
1011
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
1112
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
1213

14+
## 简介
15+
1316
Py2exe-GUI 是一个基于 [PySide6](https://doc.qt.io/qtforpython/index.html) 开发的 [PyInstaller](https://pyinstaller.org/) 辅助工具,旨在提供完整易用的图形化界面,方便用户进行 Python 项目的打包。
1417

1518
![截图](docs/source/images/Py2exe-GUI_v0.1.0_screenshot.png)
@@ -18,12 +21,28 @@ Py2exe-GUI 是一个基于 [PySide6](https://doc.qt.io/qtforpython/index.html)
1821

1922
- 完全图形化界面,易用
2023
- 支持 PyInstaller 的全部选项
21-
- 可以调用本地任何一个 Python 解释器,无需在每个待打包的解释器环境中重复安装
24+
- 可以调用本地任何一个 Python 解释器,无需在每个待打包的解释器环境中重复安装(暂未实现)
2225
- 跨平台,Windows、Linux、MacOS 均支持
2326

27+
## 如何使用
28+
29+
### 安装
30+
31+
Py2exe-GUI 已经发布至 PyPI,直接通过 pip 工具安装即可:
32+
33+
```shell
34+
pip install py2exe-gui
35+
```
36+
37+
### 运行
38+
39+
```shell
40+
python -m py2exe_gui
41+
```
42+
2443
## 项目结构
2544

26-
- 项目所有代码均在 [py2exe-gui](src/py2exe_gui) 目录下
45+
- 项目所有代码均在 [py2exe_gui](src/py2exe_gui) 目录下
2746
- [Widgets](src/py2exe_gui/Widgets) 目录下包含所有界面控件
2847
- [Core](src/py2exe_gui/Core) 目录中为执行打包的代码
2948

0 commit comments

Comments
 (0)