From 2341bc5528d3a70a478083cde544e507d741f110 Mon Sep 17 00:00:00 2001 From: lizz Date: Sat, 10 Apr 2021 16:42:41 +0800 Subject: [PATCH] debug Signed-off-by: lizz --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ee9e2d30..17e3a2ac 100644 --- a/setup.py +++ b/setup.py @@ -146,20 +146,23 @@ if __name__ == '__main__': setup( name='mmocr', version=get_version(), - description='Text Detection, OCR, and NLP Toolbox', + description='OpenMMLab Text Detection, OCR, and NLP Toolbox', long_description=readme(), + long_description_content_type='text/markdown', + maintainer='MMOCR Authors', + maintainer_email='openmmlab@gmail.com', keywords='Text Detection, OCR, KIE, NLP', - url='https://github.com/open-mmlab/mmocr', packages=find_packages(exclude=('configs', 'tools', 'demo')), + url='https://github.com/open-mmlab/mmocr', package_data={'mmocr.ops': ['*/*.so']}, classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], license='Apache License 2.0', setup_requires=parse_requirements('requirements/build.txt'),