From 24fe68f57e009ba2795f584df4c4ff14efd6200b Mon Sep 17 00:00:00 2001 From: Sivakumar Mahalingam <36898056+sivakumar-mahalingam@users.noreply.github.com> Date: Tue, 8 Oct 2024 23:16:57 +0400 Subject: [PATCH] Update setup.py --- setup.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 4bcf41a..5bf4d49 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,10 @@ url="https://github.com/sivakumar-mahalingam/fastmrz", homepage="https://pypi.org/project/fastmrz", 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=[ @@ -38,10 +42,5 @@ ], keywords=[ "fastmrz", "mrz", "image processing", "image recognition", "ocr", "computer vision", "text recognition", "text detection", "artificial intelligence", "onnx" - ], - install_requires=[ - "opencv-python>=4.9.0.80", - "pytesseract>=0.3.10", - ], - python_requires=">=3.8", + ] )