-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (72 loc) · 2.09 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fastmrz"
version = "2.1"
description = "Extracts the Machine Readable Zone (MRZ) data from document images"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "AGPLv3" }
authors = [
{ name = "Sivakumar Mahalingam" }
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development",
]
keywords = [
"fastmrz",
"mrz",
"image processing",
"image recognition",
"ocr",
"computer vision",
"text recognition",
"text detection",
"artificial intelligence",
"onnx"
]
dependencies = [
"opencv-python-headless>=4.11.0.86",
"pytesseract>=0.3.10",
]
[project.urls]
Homepage = "https://github.com/sivakumar-mahalingam/fastmrz/"
Source = "https://github.com/sivakumar-mahalingam/fastmrz"
Tracker = "https://github.com/sivakumar-mahalingam/fastmrz/issues"
[tool.hatch.build.targets.wheel]
packages = ["fastmrz"]
include = [
"fastmrz/**/*.onnx",
]
[tool.hatch.build.targets.sdist]
include = [
"fastmrz",
"tests",
"docs",
"tessdata",
"data",
"README.md",
"LICENSE",
"CODE_OF_CONDUCT.md",
"fastmrz/**/*.onnx",
]
[project.scripts]
test = "unittest:main"