diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-03 21:48:21 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-02-05 09:23:01 -0500 |
| commit | 7a70ca5d78562b0973030a0e18a5552c4bb5011f (patch) | |
| tree | c1727431166f4369bf1c54e28b70482e5ca76b1e /setuptools/extern | |
| parent | 8c0228f358e4814b3388701304db880ff79ba804 (diff) | |
| download | python-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__.py | 5 |
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() |
