-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
47 lines (42 loc) · 1.68 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "PPOCRLabel"
dynamic = ["version"]
dependencies = [
"pyqt5",
"paddleocr",
"openpyxl",
"tqdm",
"premailer",
"pandas",
"requests"
]
requires-python = ">= 3.9"
authors = [
{name = "PaddlePaddle", email = "[email protected]"}
]
description = "PPOCRLabelv2 is a semi-automatic graphic annotation tool suitable for OCR field, with built-in PP-OCR model to automatically detect and re-recognize data. It is written in Python3 and PyQT5, supporting rectangular box, table, irregular text and key information annotation modes. Annotations can be directly used for the training of PP-OCR detection and recognition models."
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["ocr", "textdetection", "textrecognition", "paddleocr", "crnn", "east", "star-net", "rosetta", "ocrlite", "db", "chineseocr", "chinesetextdetection", "chinesetextrecognition"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Natural Language :: English",
]
[project.urls]
Homepage = "https://github.com/PFCCLab/PPOCRLabel"
Documentation = "https://github.com/PFCCLab/PPOCRLabel/blob/master/README.md"
Repository = "https://github.com/PFCCLab/PPOCRLabel.git"
Issues = "https://github.com/PFCCLab/PPOCRLabel/issues"
[project.gui-scripts]
PPOCRLabel = "PPOCRLabel.PPOCRLabel:main"
[tool.setuptools]
package-dir = {PPOCRLabel = ""}
package-data = {PPOCRLabel = ["libs/*", "resources/strings/*", "resources/icons/*"]}
[tool.setuptools_scm]