同步操作将从 cyahua/cnocr 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python3import osfrom setuptools import find_packages, setupfrom pathlib import PathPACKAGE_NAME = "cnocr"here = Path(__file__).parentlong_description = (here / "README.md").read_text(encoding="utf-8")about = {}exec((here / PACKAGE_NAME.replace('.', os.path.sep) / "__version__.py").read_text(encoding="utf-8"),about,)required = ['numpy>=1.14.0,<1.20.0','pillow>=5.3.0','mxnet>=1.5.0,<1.7.0','gluoncv>=0.3.0,<0.7.0',]extras_require = {"dev": ["pip-tools", "pytest", "python-Levenshtein"],}setup(name=PACKAGE_NAME,version=about['__version__'],description="Simple package for Chinese OCR, with small pretrained models",long_description=long_description,long_description_content_type="text/markdown",author='breezedeus',author_email='breezedeus@163.com',license='Apache 2.0',url='https://github.com/breezedeus/cnocr',platforms=["Mac", "Linux", "Windows"],packages=find_packages(),include_package_data=True,install_requires=required,extras_require=extras_require,zip_safe=False,classifiers=['Development Status :: 4 - Beta','Operating System :: OS Independent','Intended Audience :: Developers','License :: OSI Approved :: Apache Software License','Programming Language :: Python','Programming Language :: Python :: Implementation','Programming Language :: Python :: 3','Programming Language :: Python :: 3.4','Programming Language :: Python :: 3.5','Programming Language :: Python :: 3.6','Topic :: Software Development :: Libraries'],)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。