-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
70 lines (62 loc) · 2.04 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = 'ocrpy'
description = 'unified interface to google vision, aws textract, azure & tesseract OCR tools.'
readme = 'README.md'
requires-python = ">=3.7"
authors = [
{ name = "Maxentlabs", email = "[email protected]" },
]
license = { text = "MIT" }
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Legal Industry',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Other Audience',
'Intended Audience :: Information Technology',
'Intended Audience :: Financial and Insurance Industry',
]
dynamic = ["version"]
dependencies = [
'attrs==21.4.0',
'pytesseract==0.3.6',
'opencv-python==4.1.2.30',
'beautifulsoup4==4.9.1',
'google-cloud-vision==1.0.0',
'boto3==1.19.7',
'pdf2image==1.14.0',
'numpy==1.21.1',
'transformers==4.20.1',
'tqdm==4.64.0',
'pandas==1.3.3',
'python-dotenv==0.17.1',
'cloudpathlib==0.9.0',
'farm-haystack==1.6.0',
'torchvision==0.11.3',
'layoutparser==0.3.4',
'paddlepaddle==2.1.0']
[project.urls]
Source = "https://github.com/maxent-ai/ocrpy"
[tool.hatch.version]
path = "ocrpy/__init__.py"
[tool.black]
line-length = 125
fast = true