Hunter Black Hat SEO
Server:LiteSpeed
System:Linux premium118.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User:bytebmoc (1367)
PHP:8.0.30
Disabled:NONE
Upload Files
File: //opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/command/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