You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
834 B
Python

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