File python-pytesseract.spec of Package python-pytesseract
#
# spec file for package python-pytesseract
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pytesseract
Version: 0.2.0
Release: 0
Summary: Python wrapper for Google's Tesseract-OCR
License: GPL-3.0-only
Group: Development/Languages/Python
Url: https://github.com/madmaze/python-tesseract
Source: https://files.pythonhosted.org/packages/source/p/pytesseract/pytesseract-%{version}.tar.gz
Source10: https://raw.githubusercontent.com/madmaze/pytesseract/v%{version}/LICENSE
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module Pillow}
BuildRequires: tesseract-traineddata-deu
BuildRequires: tesseract-traineddata-eng
BuildRequires: pkgconfig(tesseract)
# /SECTION
Requires: python-Pillow
Requires: tesseract-traineddata-deu
Requires: tesseract-traineddata-eng
Requires: pkgconfig(tesseract)
BuildArch: noarch
%python_subpackages
%description
Python-tesseract is an optical character recognition (OCR) tool for Python,
that is, it will recognize and "read" the text embedded in images.
Python-tesseract is a wrapper for Google's Tesseract-OCR Engine. It can be used
as a stand-alone invocation script to tesseract, as it can read all image types
supported by the Python Imaging Library, including JPEG, PNG, GIF, BMP, TIFF,
and others, whereas tesseract-ocr, by default, only supports TIFF and BMP.
Additionally, if used as a script, python-tesseract will print the recognized
text instead of writing it to a file. There is no support for confidence estimates and
bounding box data is planned for future releases.
%prep
%setup -q -n pytesseract-%{version}
sed -i -e '/^#!\//, 1d' src/pytesseract.py
cp %{SOURCE10} .
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%doc README.rst
%license LICENSE
%python3_only %{_bindir}/pytesseract
%{python_sitelib}/*
%changelog