Skip to content

Commit

Permalink
[Fix] Deprecate the support for "python setup.py test"
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyixiao18 committed Jan 12, 2022
1 parent 95df89e commit b5f607c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ def add_mim_extension():
'Programming Language :: Python :: 3.9',
],
license='Apache License 2.0',
tests_require=parse_requirements('requirements/tests.txt'),
install_requires=parse_requirements('requirements/runtime.txt'),
extras_require={
'all': parse_requirements('requirements.txt'),
'tests': parse_requirements('requirements/tests.txt'),
},
zip_safe=False)

0 comments on commit b5f607c

Please sign in to comment.