Current Path: > > opt > alt > python313 > lib > python3.13 > site-packages > setuptools > _distutils > command
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.8 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 430 bytes | December 01 2024 12:53:25. | |
_framework_compat.py | File | 1614 bytes | December 01 2024 12:53:25. | |
bdist.py | File | 5408 bytes | December 01 2024 12:53:25. | |
bdist_dumb.py | File | 4665 bytes | December 01 2024 12:53:25. | |
bdist_rpm.py | File | 22013 bytes | December 01 2024 12:53:25. | |
build.py | File | 5584 bytes | December 01 2024 12:53:25. | |
build_clib.py | File | 7684 bytes | December 01 2024 12:53:25. | |
build_ext.py | File | 31504 bytes | December 01 2024 12:53:25. | |
build_py.py | File | 16537 bytes | December 01 2024 12:53:25. | |
build_scripts.py | File | 5605 bytes | December 01 2024 12:53:25. | |
check.py | File | 4872 bytes | December 01 2024 12:53:25. | |
clean.py | File | 2594 bytes | December 01 2024 12:53:25. | |
config.py | File | 13077 bytes | December 01 2024 12:53:25. | |
install.py | File | 30153 bytes | December 01 2024 12:53:25. | |
install_data.py | File | 2762 bytes | December 01 2024 12:53:25. | |
install_egg_info.py | File | 2788 bytes | December 01 2024 12:53:25. | |
install_headers.py | File | 1180 bytes | December 01 2024 12:53:25. | |
install_lib.py | File | 8409 bytes | December 01 2024 12:53:25. | |
install_scripts.py | File | 1932 bytes | December 01 2024 12:53:25. | |
py37compat.py | File | 672 bytes | December 01 2024 12:53:25. | |
register.py | File | 11817 bytes | December 01 2024 12:53:25. | |
sdist.py | File | 19232 bytes | December 01 2024 12:53:25. | |
upload.py | File | 7491 bytes | December 01 2024 12:53:25. |
""" Backward compatibility for homebrew builds on macOS. """ import sys import os import functools import subprocess import sysconfig @functools.lru_cache() def enabled(): """ Only enabled for Python 3.9 framework homebrew builds except ensurepip and venv. """ PY39 = (3, 9) < sys.version_info < (3, 10) framework = sys.platform == 'darwin' and sys._framework homebrew = "Cellar" in sysconfig.get_config_var('projectbase') venv = sys.prefix != sys.base_prefix ensurepip = os.environ.get("ENSUREPIP_OPTIONS") return PY39 and framework and homebrew and not venv and not ensurepip schemes = dict( osx_framework_library=dict( stdlib='{installed_base}/{platlibdir}/python{py_version_short}', platstdlib='{platbase}/{platlibdir}/python{py_version_short}', purelib='{homebrew_prefix}/lib/python{py_version_short}/site-packages', platlib='{homebrew_prefix}/{platlibdir}/python{py_version_short}/site-packages', include='{installed_base}/include/python{py_version_short}{abiflags}', platinclude='{installed_platbase}/include/python{py_version_short}{abiflags}', scripts='{homebrew_prefix}/bin', data='{homebrew_prefix}', ) ) @functools.lru_cache() def vars(): if not enabled(): return {} homebrew_prefix = subprocess.check_output(['brew', '--prefix'], text=True).strip() return locals() def scheme(name): """ Override the selected scheme for posix_prefix. """ if not enabled() or not name.endswith('_prefix'): return name return 'osx_framework_library'
SILENT KILLER Tool