/
usr
/
lib
/
imh-ultrastack-common
/
venv
/
lib
/
python3.13
/
site-packages
/
setuptools
/
/usr/lib/imh-ultrastack-common/venv/lib/python3.13/site-packages/setuptools
mkdir
upload
Name
Size
Mode
Actions
command/
-
0755
rm
compat/
-
0755
rm
config/
-
0755
rm
tests/
-
0755
rm
_distutils/
-
0755
rm
_vendor/
-
0755
rm
__pycache__/
-
0755
rm
archive_util.py
7356
0644
edit
dl
rm
build_meta.py
20234
0644
edit
dl
rm
cli-32.exe
11776
0644
edit
dl
rm
cli-64.exe
14336
0644
edit
dl
rm
cli-arm64.exe
13824
0644
edit
dl
rm
cli.exe
11776
0644
edit
dl
rm
depends.py
5965
0644
edit
dl
rm
discovery.py
21286
0644
edit
dl
rm
dist.py
45184
0644
edit
dl
rm
errors.py
3024
0644
edit
dl
rm
extension.py
6818
0644
edit
dl
rm
glob.py
6062
0644
edit
dl
rm
gui-32.exe
11776
0644
edit
dl
rm
gui-64.exe
14336
0644
edit
dl
rm
gui-arm64.exe
13824
0644
edit
dl
rm
gui.exe
11776
0644
edit
dl
rm
installer.py
5184
0644
edit
dl
rm
launch.py
820
0644
edit
dl
rm
launcher manifest.xml
628
0644
edit
dl
rm
logging.py
1261
0644
edit
dl
rm
modified.py
568
0644
edit
dl
rm
monkey.py
3733
0644
edit
dl
rm
msvc.py
42909
0644
edit
dl
rm
namespaces.py
3045
0644
edit
dl
rm
script (dev).tmpl
218
0644
edit
dl
rm
script.tmpl
138
0644
edit
dl
rm
unicode_utils.py
3189
0644
edit
dl
rm
version.py
161
0644
edit
dl
rm
warnings.py
3796
0644
edit
dl
rm
wheel.py
9532
0644
edit
dl
rm
windows_support.py
726
0644
edit
dl
rm
_core_metadata.py
11978
0644
edit
dl
rm
_discovery.py
836
0644
edit
dl
rm
_entry_points.py
2468
0644
edit
dl
rm
_imp.py
2435
0644
edit
dl
rm
_importlib.py
223
0644
edit
dl
rm
_itertools.py
657
0644
edit
dl
rm
_normalization.py
5798
0644
edit
dl
rm
_path.py
2976
0644
edit
dl
rm
_reqs.py
1380
0644
edit
dl
rm
_scripts.py
11247
0644
edit
dl
rm
_shutil.py
1578
0644
edit
dl
rm
_static.py
4855
0644
edit
dl
rm
__init__.py
9521
0644
edit
dl
rm
Edit:
/usr/lib/imh-ultrastack-common/venv/lib/python3.13/site-packages/setuptools/namespaces.py
(3045B)
import itertools import os from .compat import py312 from distutils import log flatten = itertools.chain.from_iterable class Installer: nspkg_ext = '-nspkg.pth' def install_namespaces(self) -> None: nsp = self._get_all_ns_packages() if not nsp: return filename = self._get_nspkg_file() self.outputs.append(filename) log.info("Installing %s", filename) lines = map(self._gen_nspkg_line, nsp) with open(filename, 'wt', encoding=py312.PTH_ENCODING) as f: # Python<3.13 requires encoding="locale" instead of "utf-8" # See: python/cpython#77102 f.writelines(lines) def uninstall_namespaces(self) -> None: filename = self._get_nspkg_file() if not os.path.exists(filename): return log.info("Removing %s", filename) os.remove(filename) def _get_nspkg_file(self): filename, _ = os.path.splitext(self._get_target()) return filename + self.nspkg_ext def _get_target(self): return self.target _nspkg_tmpl = ( "import sys, types, os", "p = os.path.join(%(root)s, *%(pth)r)", "importlib = __import__('importlib.util')", "__import__('importlib.machinery')", ( "m = " "sys.modules.setdefault(%(pkg)r, " "importlib.util.module_from_spec(" "importlib.machinery.PathFinder.find_spec(%(pkg)r, " "[os.path.dirname(p)])))" ), ("m = m or sys.modules.setdefault(%(pkg)r, types.ModuleType(%(pkg)r))"), "mp = (m or []) and m.__dict__.setdefault('__path__',[])", "(p not in mp) and mp.append(p)", ) "lines for the namespace installer" _nspkg_tmpl_multi = ('m and setattr(sys.modules[%(parent)r], %(child)r, m)',) "additional line(s) when a parent package is indicated" def _get_root(self): return "sys._getframe(1).f_locals['sitedir']" def _gen_nspkg_line(self, pkg): pth = tuple(pkg.split('.')) root = self._get_root() tmpl_lines = self._nspkg_tmpl parent, sep, child = pkg.rpartition('.') if parent: tmpl_lines += self._nspkg_tmpl_multi return ';'.join(tmpl_lines) % locals() + '\n' def _get_all_ns_packages(self): """Return sorted list of all package namespaces""" pkgs = self.distribution.namespace_packages or [] return sorted(set(flatten(map(self._pkg_names, pkgs)))) @staticmethod def _pkg_names(pkg): """ Given a namespace package, yield the components of that package. >>> names = Installer._pkg_names('a.b.c') >>> set(names) == set(['a', 'a.b', 'a.b.c']) True """ parts = pkg.split('.') while parts: yield '.'.join(parts) parts.pop() class DevelopInstaller(Installer): def _get_root(self): return repr(str(self.egg_path)) def _get_target(self): return self.egg_link
Save
cmd:
run