Spaces:
Runtime error
Runtime error
from io import open | |
from setuptools import setup | |
with open('requirements.txt', encoding="utf-8-sig") as f: | |
requirements = f.readlines() | |
setup( | |
name='easyocrlite', | |
packages=['easyocrlite'], | |
python_requires='>=3.7', | |
include_package_data=True, | |
version='0.0.1', | |
install_requires=requirements, | |
license='Apache License 2.0', | |
description='', | |
long_description="", | |
keywords=['ocr optical character recognition deep learning neural network'], | |
classifiers=[ | |
'Development Status :: 5 - Production/Stable' | |
], | |
) | |