forked from JaidedAI/EasyOCR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (21 loc) · 797 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
End-to-End Multi-Lingual Optical Character Recognition (OCR) Solution
"""
from setuptools import setup
setup(
name='easyocr',
packages=['easyocr'],
include_package_data=True,
version='1.1.1',
install_requires=['torch', 'torchvision','opencv-python', 'scipy', 'numpy','Pillow<7.0','scikit-image'],
license='Apache License 2.0',
description='End-to-End Multi-Lingual Optical Character Recognition (OCR) Solution',
author='Rakpong Kittinaradorn',
author_email='[email protected]',
url='https://github.com/jaidedai/easyocr',
download_url='https://github.com/jaidedai/easyocr.git',
keywords=['ocr optical character recognition deep learning neural network'],
classifiers=[
'Development Status :: 5 - Production/Stable'
],
)