summaryrefslogtreecommitdiff
path: root/setuptools/extern
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-12-03 21:48:21 -0500
committerJason R. Coombs <jaraco@jaraco.com>2022-02-05 09:23:01 -0500
commit7a70ca5d78562b0973030a0e18a5552c4bb5011f (patch)
treec1727431166f4369bf1c54e28b70482e5ca76b1e /setuptools/extern
parent8c0228f358e4814b3388701304db880ff79ba804 (diff)
downloadpython-setuptools-git-7a70ca5d78562b0973030a0e18a5552c4bb5011f.tar.gz
Add importlib_resources and importlib_metadata to vendored packages.
Diffstat (limited to 'setuptools/extern')
-rw-r--r--setuptools/extern/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setuptools/extern/__init__.py b/setuptools/extern/__init__.py
index baca1afa..d2ac8b08 100644
--- a/setuptools/extern/__init__.py
+++ b/setuptools/extern/__init__.py
@@ -69,5 +69,8 @@ class VendorImporter:
sys.meta_path.append(self)
-names = 'packaging', 'pyparsing', 'ordered_set', 'more_itertools',
+names = (
+ 'packaging', 'pyparsing', 'ordered_set', 'more_itertools', 'importlib_metadata',
+ 'zipp', 'importlib_resources',
+)
VendorImporter(__name__, names, 'setuptools._vendor').install()