add url in pyproject, and update version number (#13274)
parent
446f1cffbd
commit
153de46b67
|
@ -1 +1 @@
|
|||
2.8.0
|
||||
2.8.1
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue