/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/command
NameSizeModeActions
__pycache__/-0755rm
alias.py23660644editdlrm
bdist_egg.py168320644editdlrm
bdist_rpm.py14350644editdlrm
bdist_wheel.py222100644editdlrm
build.py60520644editdlrm
build_clib.py45280644editdlrm
build_ext.py182700644editdlrm
build_py.py158260644editdlrm
develop.py17510644editdlrm
dist_info.py34500644editdlrm
easy_install.py7800644editdlrm
editable_wheel.py348620644editdlrm
egg_info.py257540644editdlrm
install.py50660644editdlrm
install_egg_info.py20200644editdlrm
install_lib.py43190644editdlrm
install_scripts.py24450644editdlrm
launcher manifest.xml6280644editdlrm
rotate.py21340644editdlrm
saveopts.py6780644editdlrm
sdist.py74260644editdlrm
setopt.py50470644editdlrm
test.py14000644editdlrm
_requirestxt.py42280644editdlrm
__init__.py8030644editdlrm
Edit: /opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/command/__init__.py (803B)
# mypy: disable_error_code=call-overload # pyright: reportCallIssue=false, reportArgumentType=false # Can't disable on the exact line because distutils doesn't exists on Python 3.12 # and type-checkers aren't aware of distutils_hack, # causing distutils.command.bdist.bdist.format_commands to be Any. import sys from distutils.command.bdist import bdist if 'egg' not in bdist.format_commands: try: # format_commands is a dict in vendored distutils # It used to be a list in older (stdlib) distutils # We support both for backwards compatibility bdist.format_commands['egg'] = ('bdist_egg', "Python .egg file") except TypeError: bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") bdist.format_commands.append('egg') del bdist, sys