From b0d5e2e58b8730ee955e2c17ca3aff08b46f3c61 Mon Sep 17 00:00:00 2001 From: Oz N Tiram Date: Tue, 28 Jun 2022 23:32:18 +0200 Subject: [PATCH] Add importlib-metadata explicitly on tests/pytest-pypi --- tests/pytest-pypi/setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/pytest-pypi/setup.py b/tests/pytest-pypi/setup.py index 2fcdd58b..1af3e395 100644 --- a/tests/pytest-pypi/setup.py +++ b/tests/pytest-pypi/setup.py @@ -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 = {