diff --git a/LICENSE b/LICENSE index 8aa2645..980b3c3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) [year] [fullname] +Copyright (c) 2020 Eric Ihli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index 75f821b..59181d1 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ import setuptools long_description = """ Utilities for turning images of tables into CSV data. Uses Tesseract and OpenCV. -Requires binaries for tesseract and pdfimages (from Poppler). +Requires binaries for tesseract, ImageMagick, and pdfimages (from Poppler). """ setuptools.setup( name="table_ocr", - version="0.0.1", + version="0.1", author="Eric Ihli", author_email="eihli@owoga.com", - description="Turn images of tables into CSV data.", + 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", @@ -23,6 +23,7 @@ setuptools.setup( install_requires=[ "pytesseract~=0.3", "opencv-python~=4.2", + "numpy~=1.18.1", ], python_requires='>=3.6', )