Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
rkcosmos authored Mar 15, 2020
1 parent 4e1e4cb commit a7e811a
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
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/*
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
torch
torchvision
opencv-python
scipy
numpy
Pillow
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
23 changes: 23 additions & 0 deletions setup.py
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'
],
)

0 comments on commit a7e811a

Please sign in to comment.