PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
$#$#$#

Dir : /opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/__pycache__/
Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
IP: 66.29.132.192
Choose File :

Url:
Dir : //opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/__pycache__/__init__.cpython-311.pyc

�

�|oi,#�	��dZddlmZddlZddlZddlZddlmZddlm	Z	ddl
mZmZm
Z
ej�ej�ej�ej�e����dd��xZejvegz��ej�d	d��ddlZd
dlmZmZd
dlmZd
d
lmZmZd
dl m!Z!d
dl"m#Z#d
dl$m%Z%d
dl&m'Z'ddl(Z)gd�Z*edd���Z+dZ,ej-Z.ej-Z/d�Z0d"d�Z1d�Z2e)j3j2je2_erddl(m4Z5nej6e)j3j4��Z5Gd�de5��Z4d�Z7ej8fd�Z9Gd �d!e:��Z;ej<��dS)#z@Extensions to the 'distutils' for large or complex distributions�)�annotationsN)�abstractmethod)�Mapping)�
TYPE_CHECKING�TypeVar�overload�
setuptools�_vendor�	backports�)�logging�monkey)�Require)�
PackageFinder�PEP420PackageFinder)�Distribution)�	Extension)�__version__)�SetuptoolsDeprecationWarning)�setupr�Commandrrr�
find_packages�find_namespace_packages�	_CommandT�_Command)�boundc��Gd�dtjj��}||��}|�d���|jrt|��dSdS)Nc�6��eZdZdZd
�fd�Zd�fd�	Zd	�Z�xZS)�4_install_setup_requires.<locals>.MinimalDistributionzl
        A minimal version of a distribution for supporting the
        fetch_build_eggs interface.
        �attrs�Mapping[str, object]�return�Nonec�����d}�fd�t|��t���zD��}t���|��|j���dS)N)�dependency_links�setup_requiresc�"��i|]}|�|��S�r()�.0�kr s  ��J/opt/cloudlinux/venv/lib64/python3.11/site-packages/setuptools/__init__.py�
<dictcomp>zQ_install_setup_requires.<locals>.MinimalDistribution.__init__.<locals>.<dictcomp>?s���E�E�E���5��8�E�E�E�)�set�super�__init__�set_defaults�_disable)�selfr �_incl�filtered�	__class__s `  �r+r0z=_install_setup_requires.<locals>.MinimalDistribution.__init__=sf����8�E�E�E�E�E�S��Z�Z�#�e�*�*�-D�E�E�E�H��G�G���X�&�&�&���&�&�(�(�(�(�(r-Nc���	t���|��\}}n#t$r|dfcYSwxYw|dfS)zAIgnore ``pyproject.toml``, they are not related to setup_requiresr()r/� _split_standard_project_metadata�	Exception)r3�	filenames�cfg�_tomlr6s    �r+�_get_project_config_fileszN_install_setup_requires.<locals>.MinimalDistribution._get_project_config_filesDsY���
%�"�W�W�E�E�i�P�P�
��U�U���
%�
%�
%� �"�}�$�$�$�
%������7�Ns�$(�9�9c��dS)zl
            Disable finalize_options to avoid building the working set.
            Ref #2158.
            Nr(�r3s r+�finalize_optionszE_install_setup_requires.<locals>.MinimalDistribution.finalize_optionsLs���r-)r r!r"r#�N)�__name__�
__module__�__qualname__�__doc__r0r=r@�
__classcell__�r6s@r+�MinimalDistributionr7st�������	�	�
	)�	)�	)�	)�	)�	)�	�	�	�	�	�	�	�	�	�	�	�	�	r-rHT)�ignore_option_errors)�	distutils�corer�parse_config_filesr&�_fetch_build_eggs)r rH�dists   r+�_install_setup_requiresrO4s��������i�n�9����6��u�%�%�D�	�����6�6�6��� ��$������ � r-rNrc��	|�|j��dS#t$rU}d}d|jjvr?t|d��r|�|��n|�d|�d����d}~wwxYw)Na�
        It is possible a package already installed in your system
        contains an version that is invalid according to PEP 440.
        You can try `pip install --use-pep517` as a workaround for this problem,
        or rely on a new virtual environment.

        If the problem refers to a package that is not installed yet,
        please contact that package's maintainers or distributors.
        �InvalidVersion�add_note�
)�fetch_build_eggsr&r9r6rB�hasattrrR�announce)rN�ex�msgs   r+rMrMZs�������d�1�2�2�2�2�2���������r�|�4�4�4��r�:�&�&�
,����C� � � � ��
�
�l�3�l�l�l�+�+�+�
��������s��
A=�AA8�8A=c�r�tj��t|��tjjdi|��S)Nr()r
�	configurerOrJrKr)r s r+rros8��������E�"�"�"��>��(�(�%�(�(�(r-)rc���eZdZUdZdZded<d�fd�Ze	ddd���Ze	ddd���Z	ddd�Ze	dd���Z
e	dd���Ze	dd���Z�xZ
S)ra#
    Setuptools internal actions are organized using a *command design pattern*.
    This means that each action (or group of closely related actions) executed during
    the build should be implemented as a ``Command`` subclass.

    These commands are abstractions and do not necessarily correspond to a command that
    can (or should) be executed via a terminal, in a CLI fashion (although historically
    they would).

    When creating a new command from scratch, custom defined classes **SHOULD** inherit
    from ``setuptools.Command`` and implement a few mandatory methods.
    Between these mandatory methods, are listed:
    :meth:`initialize_options`, :meth:`finalize_options` and :meth:`run`.

    A useful analogy for command classes is to think of them as subroutines with local
    variables called "options".  The options are "declared" in :meth:`initialize_options`
    and "defined" (given their final values, aka "finalized") in :meth:`finalize_options`,
    both of which must be defined by every command class. The "body" of the subroutine,
    (where it does all the work) is the :meth:`run` method.
    Between :meth:`initialize_options` and :meth:`finalize_options`, ``setuptools`` may set
    the values for options/attributes based on user's input (or circumstance),
    which means that the implementation should be careful to not overwrite values in
    :meth:`finalize_options` unless necessary.

    Please note that other commands (or other parts of setuptools) may also overwrite
    the values of the command's options/attributes multiple times during the build
    process.
    Therefore it is important to consistently implement :meth:`initialize_options` and
    :meth:`finalize_options`. For example, all derived attributes (or attributes that
    depend on the value of other attributes) **SHOULD** be recomputed in
    :meth:`finalize_options`.

    When overwriting existing commands, custom defined classes **MUST** abide by the
    same APIs implemented by the original class. They also **SHOULD** inherit from the
    original class.
    Fr�distributionrNr"r#c���t���|��t|���|��dS)zj
        Construct the command for dist, updating
        vars(self) with any keyword parameters.
        N)r/r0�vars�update)r3rN�kwr6s   �r+r0zCommand.__init__�s=���
	����������T�
�
���"�����r-�command�str�reinit_subcommands�boolrc��dSrAr(�r3rarcr`s    r+�reinitialize_commandzCommand.reinitialize_command�s	���3r-rc��dSrAr(rfs    r+rgzCommand.reinitialize_command�s	���Cr-�str | _Commandc�v�tj|||��}t|���|��|SrA)rrgr^r_)r3rarcr`�cmds     r+rgzCommand.reinitialize_command�s8���+�D�'�;M�N�N���S�	�	��������
r-c��t�)z�
        Set or (reset) all options/attributes/caches used by the command
        to their default values. Note that these values may be overwritten during
        the build.
        ��NotImplementedErrorr?s r+�initialize_optionszCommand.initialize_options��
��"�!r-c��t�)z�
        Set final values for all options/attributes used by the command.
        Most of the time, each option/attribute/cache should only be set if it does not
        have any value yet (e.g. ``if self.attr is None: self.attr = val``).
        rmr?s r+r@zCommand.finalize_options�rpr-c��t�)z�
        Execute the actions intended by the command.
        (Side effects **SHOULD** only take place when :meth:`run` is executed,
        for example, creating new files or writing to the terminal output).
        rmr?s r+�runzCommand.run�rpr-)rNrr"r#)F)rarbrcrdr"r)rarrcrdr"r)rarircrdr"r)r"r#)rBrCrDrE�command_consumes_arguments�__annotations__r0rrgrror@rsrFrGs@r+rrs.��������#�#�J"'�������������7<������X���=B������X��CH�������"�"�"��^�"��"�"�"��^�"��"�"�"��^�"�"�"�"�"r-rc��d�tj|d���D��}ttjj|��S)z%
    Find all files under 'path'
    c3�hK�|]-\}}}|D]$}tj�||��V��%�.dSrA)�os�path�join)r)�base�dirs�files�files     r+�	<genexpr>z#_find_all_simple.<locals>.<genexpr>�sc�������D�$�����
�	����T�4� � �������r-T)�followlinks)rx�walk�filterry�isfile)ry�resultss  r+�_find_all_simpler��sE����!#���4�!@�!@�!@����G�
�"�'�.�'�*�*�*r-c���t|��}|tjkr5tjtjj|���}t||��}t|��S)z�
    Find all files under 'dir' and return the list of full filenames.
    Unless dir is '.', return full filenames with dir prepended.
    )�start)	r�rx�curdir�	functools�partialry�relpath�map�list)�dirr}�make_rels   r+�findallr��sR��

�S�!�!�E�
�b�i����$�R�W�_�C�@�@�@���H�e�$�$����;�;�r-c��eZdZdZdS)�sicz;Treat this string as-is (https://en.wikipedia.org/wiki/Sic)N)rBrCrDrEr(r-r+r�r��s������E�E�E�Er-r�)rNr)=rE�
__future__rr�rx�sys�abcr�collections.abcr�typingrrrry�extendrz�dirname�__file__�vendor_path�modules�pop�_distutils_hack.override�_distutils_hack�r
r�dependsr�	discoveryrrrNr�	extensionr�versionr�warningsr�distutils.corerJ�__all__r�bootstrap_install_from�findrrrOrMrrKrr�
get_unpatchedr�r�r�rbr��	patch_allr(r-r+�<module>r�s��F�F�#�"�"�"�"�"�����	�	�	�	�
�
�
�
�������#�#�#�#�#�#�3�3�3�3�3�3�3�3�3�3���������b�g�o�o�b�g�o�o�h�>W�>W�.X�.X�Zf�hq�!r�!r�r�+�{~�|D�D�IT�HU�U�V�V�V������T�"�"�"�������������������9�9�9�9�9�9�9�9������� � � � � � �/�/�/�/�/�/�2�2�2�2�2�2�����	�	�	��
�G�K�z�2�2�2�	����"�
�-�2��# �# �# �L����*)�)�)���$�,��
��<�2�2�2�2�2�2�2�#�v�#�I�N�$:�;�;�H�Y"�Y"�Y"�Y"�Y"�h�Y"�Y"�Y"�x	+�	+�	+��	�	�	�	�	�F�F�F�F�F�#�F�F�F�
�������r-