forked from gitanat/simple-ocr-opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (18 loc) · 785 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(
name="simpleocr",
packages=["simpleocr"],
version="0.1.0",
description="A library for simple OCR in Python using OpenCV",
author="The simple-ocr-opencv authors",
url="https://www.github.com/goncalopp/simple-ocr-opencv",
download_url="https://www.github.com/goncalopp/simple-ocr-opencv/releases",
keywords=["OCR", "OpenCV"],
license="AGPL",
classifiers=["Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v2 or later (AGPLv2+)"],
include_package_data=True,
package_data={"": ["simpleocr/data/*.box", "simpleocr/data/*.png"]},
install_requires=["six", "pillow", "numpy"]
)