2021-05-19 22:56:54 +08:00
|
|
|
from setuptools import find_packages, setup # type: ignore
|
|
|
|
|
|
|
|
setup(
|
2021-05-21 13:49:22 +08:00
|
|
|
name='openmim',
|
2021-05-19 22:56:54 +08:00
|
|
|
version='0.1.0',
|
|
|
|
description='MIM Install OpenMMLab packages',
|
2021-05-25 13:06:19 +08:00
|
|
|
author='MIM Authors',
|
2021-05-19 22:56:54 +08:00
|
|
|
author_email='openmmlab@gmail.com',
|
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
python_requires='>=3.6',
|
|
|
|
install_requires=[
|
|
|
|
'Click==7.1.2',
|
|
|
|
'colorama',
|
|
|
|
'requests',
|
|
|
|
'model-index',
|
|
|
|
'pandas',
|
|
|
|
'tabulate',
|
|
|
|
],
|
|
|
|
entry_points='''
|
|
|
|
[console_scripts]
|
|
|
|
mim=mim.cli:cli
|
|
|
|
''',
|
|
|
|
)
|