diff --git a/dist/table_ocr-0.2.4-py3-none-any.whl b/dist/table_ocr-0.2.4-py3-none-any.whl new file mode 100644 index 0000000..b76954d Binary files /dev/null and b/dist/table_ocr-0.2.4-py3-none-any.whl differ diff --git a/dist/table_ocr-0.2.4.tar.gz b/dist/table_ocr-0.2.4.tar.gz new file mode 100644 index 0000000..b353f16 Binary files /dev/null and b/dist/table_ocr-0.2.4.tar.gz differ diff --git a/pdf_table_extraction_and_ocr.org b/pdf_table_extraction_and_ocr.org index def484e..e8e6412 100644 --- a/pdf_table_extraction_and_ocr.org +++ b/pdf_table_extraction_and_ocr.org @@ -881,7 +881,7 @@ with open(os.path.join(this_dir, "README.txt"), encoding="utf-8") as f: setuptools.setup( name="table_ocr", - version="0.2.3", + version="0.2.4", author="Eric Ihli", author_email="eihli@owoga.com", description="Extract text from tables in images.", @@ -897,7 +897,7 @@ setuptools.setup( "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - install_requires=["pytesseract~=0.3", "opencv-python~=4.2", "numpy~=1.19"], + install_requires=["pytesseract~=0.3", "opencv-python~=4.2", "numpy~=1.19", "requests>=2"], python_requires=">=3.6", ) #+END_SRC diff --git a/setup.py b/setup.py index fac5daf..dbd0369 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open(os.path.join(this_dir, "README.txt"), encoding="utf-8") as f: setuptools.setup( name="table_ocr", - version="0.2.3", + version="0.2.4", author="Eric Ihli", author_email="eihli@owoga.com", description="Extract text from tables in images.", @@ -23,6 +23,6 @@ setuptools.setup( "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - install_requires=["pytesseract~=0.3", "opencv-python~=4.2", "numpy~=1.19"], + install_requires=["pytesseract~=0.3", "opencv-python~=4.2", "numpy~=1.19", "requests>=2"], python_requires=">=3.6", )