X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/command
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
command
/
??
..
??
__init__.py
(803 B)
??
__pycache__
??
_requirestxt.py
(4.13 KB)
??
alias.py
(2.32 KB)
??
bdist_egg.py
(16.55 KB)
??
bdist_rpm.py
(1.4 KB)
??
bdist_wheel.py
(21.73 KB)
??
build.py
(5.91 KB)
??
build_clib.py
(4.42 KB)
??
build_ext.py
(18.03 KB)
??
build_py.py
(15.17 KB)
??
develop.py
(1.57 KB)
??
dist_info.py
(3.37 KB)
??
easy_install.py
(780 B)
??
editable_wheel.py
(34.02 KB)
??
egg_info.py
(25.27 KB)
??
install.py
(4.95 KB)
??
install_egg_info.py
(2.03 KB)
??
install_lib.py
(4.22 KB)
??
install_scripts.py
(2.43 KB)
??
launcher manifest.xml
(628 B)
??
rotate.py
(2.14 KB)
??
saveopts.py
(692 B)
??
sdist.py
(7.2 KB)
??
setopt.py
(4.98 KB)
??
test.py
(1.31 KB)
Editing: easy_install.py
import os import sys import types from setuptools import Command from .. import _scripts, warnings class easy_install(Command): """Stubbed command for temporary pbr compatibility.""" def __getattr__(name): attr = getattr( types.SimpleNamespace( ScriptWriter=_scripts.ScriptWriter, sys_executable=os.environ.get( "__PYVENV_LAUNCHER__", os.path.normpath(sys.executable) ), ), name, ) warnings.SetuptoolsDeprecationWarning.emit( summary="easy_install module is deprecated", details="Avoid accessing attributes of setuptools.command.easy_install.", due_date=(2025, 10, 31), see_url="https://github.com/pypa/setuptools/issues/4976", ) return attr
Upload File
Create Folder