Update license and setup.py

main
Eric Ihli 4 years ago
parent 1156eafc5c
commit 449ee015d3

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

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

Loading…
Cancel
Save