Skip to content

Commit 640453f

Browse files
committed
update 支持模型加密解密操作,支持解密直接返回字节流
1 parent c84d924 commit 640453f

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

README.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,28 @@
1-
## python tools V1.4.0
1+
## python tools V1.4.1
22
* 不使用第三方wheel包
33

4+
## 更新日志
5+
6+
* update 支持模型加密解密操作,支持解密直接返回字节流
7+
8+
<details onclose>
9+
<summary>查看更多更新日志</summary>
10+
11+
* update 支持不使用图片进行打包
12+
* update 支持python3.7进行打包
13+
* update 路径转换无需判断路径是否真实存在
14+
* update 打包的时候支持文件夹导入
15+
* update 打包成AppImage时候无需icon图标
16+
* update 加入AppImage图标为默认图标
17+
* update Linux打包使用原始的版本号
18+
</details>
19+
420

521
## 1.编写python文件
622

723
## 2. 编写setup.py文件
824
```Python
925
from setuptools import setup, find_packages
10-
1126
setup(
1227
name="jade_tools",
1328
version="0.1",
@@ -36,14 +51,4 @@ pip install wheel
3651
```bash
3752
pip wheel --wheel-dir=./wheel_dir ./
3853
```
39-
> wheel-dir 为wheel 输出文件夹,后面接项目文件夹(即包含setup.py的文件夹)
40-
41-
42-
## 更新日志
43-
* update 支持不使用图片进行打包
44-
* update 支持python3.7进行打包
45-
* update 路径转换无需判断路径是否真实存在
46-
* update 打包的时候支持文件夹导入
47-
* update 打包成AppImage时候无需icon图标
48-
* update 加入AppImage图标为默认图标
49-
* update Linux打包使用原始的版本号
54+
> wheel-dir 为wheel 输出文件夹,后面接项目文件夹(即包含setup.py的文件夹)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
find_packages("jade", pack_list)
1313
setup(
1414
name="jade",
15-
version="1.4.0",
15+
version="1.4.1",
1616
keywords=("pip", "jade", ""),
1717
description="jade",
1818
long_description="",

0 commit comments

Comments
 (0)