-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI workflows, axe support for EOL python versions Bump version to 0.3.14
- Loading branch information
1 parent
bc0b6b0
commit 249d6be
Showing
9 changed files
with
72 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,37 @@ | ||
[metadata] | ||
name = pytesseract | ||
version = attr: pytesseract.__version__ | ||
author = Samuel Hoffstaetter | ||
author_email = samuel@hoffstaetter.com | ||
maintainer = Matthias Lee | ||
maintainer_email = pytesseract@madmaze.net | ||
description = Python-tesseract is a python wrapper for Google's Tesseract-OCR | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
license = Apache License 2.0 | ||
license_file = LICENSE | ||
keywords = python-tesseract OCR Python | ||
url = https://github.com/madmaze/pytesseract | ||
author = Samuel Hoffstaetter | ||
author_email = samuel@hoffstaetter.com | ||
maintainer = Matthias Lee | ||
maintainer_email = pytesseract@madmaze.net | ||
license = Apache-2.0 | ||
license_files = LICENSE | ||
classifiers = | ||
License :: OSI Approved :: Apache Software License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: 3.12 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Programming Language :: Python :: Implementation :: PyPy | ||
keywords = python-tesseract OCR Python | ||
[options] | ||
packages = find: | ||
include_package_data = True | ||
install_requires = | ||
packaging>=21.3 | ||
Pillow>=8.0.0 | ||
python_requires = >=3.8 | ||
[options.entry_points] | ||
console_scripts = | ||
pytesseract = pytesseract.pytesseract:main | ||
packaging>=21.3 | ||
python_requires = >=3.9 | ||
include_package_data = True | ||
[options.packages.find] | ||
exclude = | ||
tests* | ||
testing* | ||
[options.entry_points] | ||
console_scripts = | ||
pytesseract = pytesseract.pytesseract:main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from __future__ import annotations | ||
|
||
from setuptools import setup | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters