import setuptools long_description = """ Utilities for turning images of tables into CSV data. Uses Tesseract and OpenCV. Requires binaries for tesseract, ImageMagick, and pdfimages (from Poppler). """ setuptools.setup( name="table_ocr", version="0.2.0", author="Eric Ihli", author_email="eihli@owoga.com", description="Extract text from tables in images.", long_description=long_description, long_description_content_type="text/plain", url="https://github.com/eihli/image-table-ocr", packages=setuptools.find_packages(), package_data={ "table_ocr": ["tessdata/table-ocr.traineddata", "tessdata/eng.traineddata"] }, classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], install_requires=["pytesseract~=0.3", "opencv-python~=4.2",], python_requires=">=3.6", )