-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
79 lines (74 loc) · 2.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools==67.8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dedoc-utils"
authors = [
{name = "Dedoc team", email = "[email protected]"}
]
maintainers = [
{name = "Oksana Belyaeva", email = "[email protected]"},
{name = "Andrew Perminov", email = "[email protected]"},
{name = "Anastasiya Bogatenkova", email = "[email protected]"}
]
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
description = "Utils for automatic document images processing"
keywords = ["text detection", "text recognition", "OCR", "deep learning", "computer vision"]
readme="README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.6"
dependencies = [
"numpy>=1.22.0,<2.0",
"opencv-python>=4.5.5.64,<=4.6.0.66",
"pytesseract>=0.3",
"scikit_learn>=1.0.2,<=1.3.1"
]
[project.optional-dependencies]
torch = [
"torch~=1.11.0",
"torchvision~=0.12.0"
]
doctr = [
"pyclipper==1.3.0.post4",
"shapely==2.0.1",
"tqdm>=4"
]
dev = [
"importlib_metadata==7.2.1",
"build==0.10.0",
"twine==4.0.2"
]
lint = [
"flake8==5.0.4",
"flake8-absolute-import==1.0.0.1",
"flake8-annotations==2.9.1",
"flake8-bugbear==23.3.12",
"flake8-builtins==2.1.0",
"flake8-clean-block==0.1.2",
"flake8-fill-one-line>=0.4.0",
"flake8-import-order==0.18.2",
"flake8-multiline-containers==0.0.19",
"flake8-print==5.0.0",
"flake8-quotes==3.3.2",
"flake8-use-fstring==1.4",
"pycodestyle==2.9.0",
"pep8-naming==0.13.3"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["dedocutils*"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[project.urls]
homepage = "https://github.com/ispras/dedoc-utils"
repository = "https://github.com/ispras/dedoc-utils"
documentation = "https://github.com/ispras/dedoc-utils/blob/master/README.md"
changelog = "https://github.com/ispras/dedoc-utils/blob/master/CHANGELOG.md"