Add MMSeg citation (#825)

* fix typo

* add citation
This commit is contained in:
Junjun2016 2021-09-02 09:38:58 +08:00 committed by GitHub
parent 122448010b
commit 3ff9b5377b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 3 deletions

8
CITATION.cff Normal file
View File

@ -0,0 +1,8 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- name: "MMSegmentation Contributors"
title: "OpenMMLab Semantic Segmentation Toolbox and Benchmark"
date-released: 2020-07-10
url: "https://github.com/open-mmlab/mmsegmentation"
license: Apache-2.0

View File

@ -98,7 +98,7 @@ def parse_requirements(fname='requirements.txt', with_version=True):
return packages return packages
def add_mim_extention(): def add_mim_extension():
"""Add extra files that are required to support MIM into the package. """Add extra files that are required to support MIM into the package.
These files will be added by creating a symlink to the originals if the These files will be added by creating a symlink to the originals if the
@ -147,14 +147,14 @@ def add_mim_extention():
if __name__ == '__main__': if __name__ == '__main__':
add_mim_extention() add_mim_extension()
setup( setup(
name='mmsegmentation', name='mmsegmentation',
version=get_version(), version=get_version(),
description='Open MMLab Semantic Segmentation Toolbox and Benchmark', description='Open MMLab Semantic Segmentation Toolbox and Benchmark',
long_description=readme(), long_description=readme(),
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
author='MMSegmentation Authors', author='MMSegmentation Contributors',
author_email='openmmlab@gmail.com', author_email='openmmlab@gmail.com',
keywords='computer vision, semantic segmentation', keywords='computer vision, semantic segmentation',
url='http://github.com/open-mmlab/mmsegmentation', url='http://github.com/open-mmlab/mmsegmentation',