forked from JaidedAI/EasyOCR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include LICENSE.txt | ||
include README.md | ||
|
||
include jaidedread/model/* | ||
include jaidedread/character/* | ||
include jaidedread/dict/* |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
torch | ||
torchvision | ||
opencv-python | ||
scipy | ||
numpy | ||
Pillow |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
""" | ||
End-to-End Multi-Lingual Optical Character Recognition (OCR) Solution | ||
""" | ||
|
||
from setuptools import setup | ||
|
||
setup( | ||
name='jaidedread', | ||
packages=['jaidedread'], | ||
include_package_data=True, | ||
version='0.9', | ||
install_requires=['torch', 'torchvision','opencv-python', 'scipy', 'numpy','Pillow'], | ||
license='Apache License 2.0', | ||
description='End-to-End Multi-Lingual Optical Character Recognition (OCR) Solution', | ||
author='Rakpong Kittinaradorn', | ||
author_email='r.kittinaradorn@gmail.com', | ||
url='https://github.com/jaided/jaidedread', | ||
download_url='https://github.com/jaided/jaidedread.git', | ||
keywords=['ocr optical character recognition deep learning neural network'], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta' | ||
], | ||
) |