forked from madmaze/pytesseract
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
43 lines (39 loc) · 1.29 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[metadata]
name = unstructured_pytesseract
version = attr: unstructured_pytesseract.__version__
author = Samuel Hoffstaetter
author_email = [email protected]
maintainer = Matthias Lee
maintainer_email = [email protected]
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
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
[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_unstructured.pytesseract:main
[options.packages.find]
exclude =
tests*
testing*