-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (27 loc) · 1.08 KB
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
from setuptools import find_packages, setup
from gpyocr import __version__
with open("README.rst", "r") as f:
long_description = f.read()
setup(
name="gpyocr",
version=__version__,
description="Python wrapper for Tesseract OCR and Google Vision OCR",
long_description=long_description,
url="https://github.com/ceccoemi/gpyocr",
author="Emilio Cecchini",
author_email="cecchini.mle@gmail.com",
keywords="OCR tesseract google vision wrapper",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(exclude=["tests"]),
entry_points={"console_scripts": ["gpyocr = gpyocr.__main__:main"]},
license="Apache 2.0",
install_requires=["opencv-python", "Pillow", "google-cloud-vision"],
tests_require=["pytest", "pytest-cov"],
)