Add requests as dependency for demo

main
Eric Ihli 4 years ago
parent 8be7972bc7
commit f77c6854f8

Binary file not shown.

Binary file not shown.

@ -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

@ -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",
)

Loading…
Cancel
Save