Signed-off-by: lizz <lizz@sensetime.com>
This commit is contained in:
lizz 2021-04-10 16:42:41 +08:00
parent e7a888d872
commit 2341bc5528

View File

@ -146,20 +146,23 @@ if __name__ == '__main__':
setup( setup(
name='mmocr', name='mmocr',
version=get_version(), version=get_version(),
description='Text Detection, OCR, and NLP Toolbox', description='OpenMMLab Text Detection, OCR, and NLP Toolbox',
long_description=readme(), long_description=readme(),
long_description_content_type='text/markdown',
maintainer='MMOCR Authors',
maintainer_email='openmmlab@gmail.com',
keywords='Text Detection, OCR, KIE, NLP', keywords='Text Detection, OCR, KIE, NLP',
url='https://github.com/open-mmlab/mmocr',
packages=find_packages(exclude=('configs', 'tools', 'demo')), packages=find_packages(exclude=('configs', 'tools', 'demo')),
url='https://github.com/open-mmlab/mmocr',
package_data={'mmocr.ops': ['*/*.so']}, package_data={'mmocr.ops': ['*/*.so']},
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License', 'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
], ],
license='Apache License 2.0', license='Apache License 2.0',
setup_requires=parse_requirements('requirements/build.txt'), setup_requires=parse_requirements('requirements/build.txt'),