mirror of
https://github.com/sml2h3/ddddocr.git
synced 2025-05-06 10:10:24 +08:00
修复pillow的版本引用问题
This commit is contained in:
parent
654e3b1d7b
commit
c1c4408ea4
10
README.md
10
README.md
@ -2,15 +2,7 @@
|
|||||||
|
|
||||||
# 带带弟弟OCR通用验证码识别SDK免费开源版
|
# 带带弟弟OCR通用验证码识别SDK免费开源版
|
||||||
|
|
||||||
# 官方免费在线ddddocr接口
|
# 当前版本为1.4.8
|
||||||
|
|
||||||
|
|
||||||
[注册即可免费在线调用](https://01.gs/doc/9)
|
|
||||||
|
|
||||||
不需要付钱,也不需要发工单,注册就能用!
|
|
||||||
|
|
||||||
|
|
||||||
# 当前版本为1.4.7
|
|
||||||
|
|
||||||
## 1.4.3更新内容
|
## 1.4.3更新内容
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 当前版本为1.4.7
|
# 当前版本为1.4.8
|
||||||
|
|
||||||
## 1.4.3更新内容
|
## 1.4.3更新内容
|
||||||
|
|
||||||
@ -231,7 +231,7 @@ cv2.imwrite("result.jpg", im)
|
|||||||
|
|
||||||
## 环境支持
|
## 环境支持
|
||||||
|
|
||||||
`python <= 3.9`
|
`python <= 3.10`
|
||||||
|
|
||||||
`Windows/Linux/Macos..`
|
`Windows/Linux/Macos..`
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
onnxruntime
|
onnxruntime
|
||||||
Pillow
|
Pillow=9.5.0
|
||||||
numpy
|
numpy
|
||||||
opencv-python-headless
|
opencv-python
|
8
setup.py
8
setup.py
@ -14,7 +14,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="ddddocr",
|
name="ddddocr",
|
||||||
version="1.4.7",
|
version="1.4.8",
|
||||||
author="sml2h3",
|
author="sml2h3",
|
||||||
description="带带弟弟OCR",
|
description="带带弟弟OCR",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
@ -22,7 +22,11 @@ setup(
|
|||||||
url="https://github.com/sml2h3/ddddocr",
|
url="https://github.com/sml2h3/ddddocr",
|
||||||
packages=find_packages(where='.', exclude=(), include=('*',)),
|
packages=find_packages(where='.', exclude=(), include=('*',)),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
|
"Programming Language :: Python :: 3.7",
|
||||||
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
|
"Programming Language :: Python :: 3.10",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user