Add importlib-metadata explicitly on tests/pytest-pypi

This commit is contained in:
Oz N Tiram
2022-06-28 23:32:18 +02:00
parent 2da0ec45ca
commit b0d5e2e58b
+4 -1
View File
@@ -90,7 +90,10 @@ setup(
keywords='pytest-pypi testing pytest pypi',
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
include_package_data = True, # include files listed in MANIFEST.in
install_requires = ['Flask', 'six'],
install_requires = [
'Flask',
'six',
'importlib-metadata'],
# the following makes a plugin available to pytest
entry_points = {