-
Notifications
You must be signed in to change notification settings - Fork 599
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
authors: | ||
- name: "MMTracking Contributors" | ||
title: "OpenMMLab Video Perception Toolbox and Benchmark" | ||
date-released: 2021-01-04 | ||
url: "https://github.com/open-mmlab/mmtracking" | ||
license: Apache-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,7 +128,7 @@ def gen_packages_items(): | |
return packages | ||
|
||
|
||
def add_mim_extention(): | ||
def add_mim_extension(): | ||
"""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 | ||
|
@@ -177,14 +177,14 @@ def add_mim_extention(): | |
|
||
|
||
if __name__ == '__main__': | ||
add_mim_extention() | ||
add_mim_extension() | ||
setup( | ||
name='mmtrack', | ||
version=get_version(), | ||
description='OpenMMLab Unified Video Perception Platform', | ||
long_description=readme(), | ||
long_description_content_type='text/markdown', | ||
author='OpenMMLab', | ||
author='MMTracking Contributors', | ||
author_email='[email protected]', | ||
keywords='computer vision, object tracking, video object detection', | ||
url='https://github.com/open-mmlab/mmtracking', | ||
|