diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000..f10fa6ed44 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include LICENSE.txt +include README.md + +include jaidedread/model/* +include jaidedread/character/* +include jaidedread/dict/* \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000..4130069352 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +torch +torchvision +opencv-python +scipy +numpy +Pillow \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000000..224a77957f --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000..4662fab38e --- /dev/null +++ b/setup.py @@ -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' + ], +) \ No newline at end of file