-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
49 lines (46 loc) · 2.01 KB
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as f:
long_description = f.read()
setup(
name="fastmrz",
version="1.3",
author="Sivakumar Mahalingam",
description="Extracts the Machine Readable Zone (MRZ) data from document images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sivakumar-mahalingam/fastmrz/",
project_urls={
'Source': 'https://github.com/sivakumar-mahalingam/fastmrz',
'Tracker': 'https://github.com/sivakumar-mahalingam/fastmrz/issues',
},
license="AGPLv3",
python_requires=">=3.8",
install_requires=[
"opencv-python>=4.9.0.80", "pytesseract>=0.3.10",
],
packages=find_packages(),
include_package_data=True,
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"
]
)