add url in pyproject, and update version number (#13274)

pull/13308/head
Wang Xin 2024-07-06 21:20:59 +08:00 committed by GitHub
parent 446f1cffbd
commit 153de46b67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

@ -1 +1 @@
2.8.0
2.8.1

View File

@ -50,7 +50,6 @@ ppocr = importlib.import_module("ppocr", "paddleocr")
ppstructure = importlib.import_module("ppstructure", "paddleocr")
from ppocr.utils.logging import get_logger
logger = get_logger()
from ppocr.utils.utility import (
check_and_read,
get_image_file_list,
@ -68,6 +67,7 @@ from ppstructure.utility import init_args, draw_structure_result
from ppstructure.predict_system import StructureSystem, save_structure_res, to_excel
logger = get_logger()
__all__ = [
"PaddleOCR",
"PPStructure",

View File

@ -58,6 +58,12 @@ dependencies = [
"fire>=0.3.0",
]
[project.urls]
homepage = "https://github.com/PaddlePaddle/PaddleOCR"
documentation = "https://github.com/PaddlePaddle/PaddleOCR/blob/main/README.md"
repository = "https://github.com/PaddlePaddle/PaddleOCR.git"
issues = "https://github.com/PaddlePaddle/PaddleOCR/issues"
[project.scripts]
paddleocr = "paddleocr.paddleocr:main"