the module pkg_resources is deprecated and now requires setuptools to be manually added in python
3.12 as a project dependency
instead we replace it with the new and faster importlib.metadata and importlib.resources modules which is part of
the python stdlib as long as we're using a sufficiently new python version
the module
pkg_resources
is deprecated and now requires setuptools to be manually added in python 3.12 as a project dependencyinstead we replace it with the new and faster
importlib.metadata
andimportlib.resources
modules which is part of the python stdlib as long as we're using a sufficiently new python version