PK APOCALYPSE V1

APOCALYPSE V1

Current Path : /opt/alt/python313/lib/python3.13/site-packages/setuptools/__pycache__/
Upload File :
Current File : //opt/alt/python313/lib/python3.13/site-packages/setuptools/__pycache__/__init__.cpython-313.pyc

�

D\Lg�#��D�SrSSKrSSKrSSKrSSKrSSKrSSKJ	r	 SSK
Jr SSK
JrJr SSK
Jr SSKJr SS	KJrJr SS
KJr SSKJr SSKJr /S
Qr\R<rSr\R@r!\R@r"Sr#Sr$Sr%\RLRJR\%l\RN"\RLRP5r)"SS\)5r(Sr*\RV4Sjr,\RZ"\5S5r"SS\.5r/\R`"5 g)z@Extensions to the 'distutils' for large or complex distributions�N)�DistutilsOptionError)�convert_path�)�logging�monkey)�version)�Require)�
PackageFinder�PEP420PackageFinder)�Distribution)�	Extension)�SetuptoolsDeprecationWarning)�setupr�Commandr
r	r�
find_packages�find_namespace_packagesc��"SS[RR5nU"U5nURSS9 UR(a[U5 gg)Nc�B^�\rSrSrSrU4SjrSU4SjjrSrSrU=r	$)�4_install_setup_requires.<locals>.MinimalDistribution�+zT
A minimal version of a distribution for supporting the
fetch_build_eggs interface.
c�>�Sn[U5[U5-Vs0sHo3X_M	 nn[TU]	U5 URR	5 gs snf)N)�dependency_links�setup_requires)�set�super�__init__�set_defaults�_disable)�self�attrs�_incl�k�filtered�	__class__s     �ڌ/builddir/build/BUILDROOT/alt-python313-setuptools-69.0.2-1.el8.x86_64/opt/alt/python313/lib/python3.13/site-packages/setuptools/__init__.pyr�=_install_setup_requires.<locals>.MinimalDistribution.__init__1sT���8�E�-0��Z�#�e�*�-D�E�-D��5�8��-D�H�E��G��X�&����&�&�(��Fs�
Ac�X>�[TU]U5up#US4$![a US4s$f=f)zAIgnore ``pyproject.toml``, they are not related to setup_requires�)r� _split_standard_project_metadata�	Exception)r�	filenames�cfg�tomlr$s    �r%�_get_project_config_files�N_install_setup_requires.<locals>.MinimalDistribution._get_project_config_files8s;���
%�!�G�D�Y�O�	���B�w����
%� �"�}�$�
%�s��)�)c��g)zH
Disable finalize_options to avoid building the working set.
Ref #2158.
Nr()rs r%�finalize_options�E_install_setup_requires.<locals>.MinimalDistribution.finalize_options@s��r(�N)
�__name__�
__module__�__qualname__�__firstlineno__�__doc__rr.r1�__static_attributes__�
__classcell__�r$s@r%�MinimalDistributionr+s���	�
	)�	%�	�	r3r=T)�ignore_option_errors)�	distutils�corer�parse_config_filesr�_fetch_build_eggs)r r=�dists   r%�_install_setup_requiresrD(sM���i�n�n�9�9��6�u�%�D�	�����6�����$��r3c�
�URUR5 g![aZnSnSURR;a8[US5(aUR
U5 eURSUS35 eSnAff=f)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_eggsrr*r$r5�hasattrrG�announce)rC�ex�msgs   r%rBrBNs}������d�1�1�2�������r�|�|�4�4�4��r�:�&�&����C� �	��
�
��3�%�r�l�+�
���s��
B�AA=�=Bc��[R"5 [U5 [RR
"S0UD6$)Nr()r�	configurerDr?r@r)r s r%rrcs.�������E�"��>�>���(�%�(�(r3c�J^�\rSrSrSrSrU4SjrS	SjrSrS
Sjr	Sr
U=r$)r�pa�	
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:

.. method:: initialize_options(self)

    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.

.. method:: finalize_options(self)

    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``).

.. method:: run(self)

    Execute the actions intended by the command.
    (Side effects **SHOULD** only take place when ``run`` is executed,
    for example, creating new files or writing to the terminal output).

A useful analogy for command classes is to think of them as subroutines with local
variables called "options".  The options are "declared" in ``initialize_options()``
and "defined" (given their final values, aka "finalized") in ``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 ``run()`` method.
Between ``initialize_options()`` and ``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
``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 ``initialize_options()`` and
``finalize_options()``. For example, all derived attributes (or attributes that
depend on the value of other attributes) **SHOULD** be recomputed in
``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.
Fc�X>�[TU]U5 [U5RU5 g)zR
Construct the command for dist, updating
vars(self) with any keyword parameters.
N)rr�vars�update)rrC�kwr$s   �r%r�Command.__init__�s$���
	������T�
���"�r3c	��[X5nUc[XU5 U$[U[5(d[	SU<SU<SU<S35eU$)N�'z' must be a z (got `z`))�getattr�setattr�
isinstance�strr)r�option�what�default�vals     r%�_ensure_stringlike�Command._ensure_stringlike�sK���d�#���;��D�'�*��N��C��%�%�&�28�$��D��
��
r3c��[X5nUcg[U[5(a"[X[R
"SU55 g[U[5(a[SU55nOSnU(d[SU<SU<S35eg)a|Ensure that 'option' is a list of strings.  If 'option' is
currently a string, we split it either on /,\s*/ or /\s+/, so
"foo bar baz", "foo,bar,baz", and "foo,   bar baz" all become
["foo", "bar", "baz"].

..
   TODO: This method seems to be similar to the one in ``distutils.cmd``
   Probably it is just here for backward compatibility with old Python versions?

:meta private:
Nz,\s*|\s+c3�@# �UHn[U[5v� M g7fr4)r[r\)�.0�vs  r%�	<genexpr>�-Command.ensure_string_list.<locals>.<genexpr>�s���9�S���A�s�+�+�S�s�FrXz!' must be a list of strings (got �))	rYr[r\rZ�re�split�list�allr)rr]r`�oks    r%�ensure_string_list�Command.ensure_string_list�sw���d�#���;��
��S�
!�
!��D�"�(�(�;��"<�=��#�t�$�$��9�S�9�9�����*�AG��M���r3c�f�[RXU5n[U5RU5 U$r4)�_Command�reinitialize_commandrSrT)r�command�reinit_subcommandsrU�cmds     r%rs�Command.reinitialize_command�s,���+�+�D�;M�N���S�	������
r3r(r4)r)r5r6r7r8r9�command_consumes_argumentsrrarorsr:r;r<s@r%rrps*���4�l"'���	��6�r3rc��S[R"USS95n[[RRU5$)z
Find all files under 'path'
c3�v# �UH0upnUH$n[RRX5v� M& M2 g7fr4)�os�path�join)re�base�dirs�files�files     r%rg�#_find_all_simple.<locals>.<genexpr>�s9����!@��D���D�	�����T� � ��	!�!@�s�79T)�followlinks)r{�walk�filterr|�isfile)r|�resultss  r%�_find_all_simpler��s3���!#����4�!@��G�
�"�'�'�.�.�'�*�*r3c���[U5nU[R:Xa8[R"[R
RUS9n[X!5n[U5$)z�
Find all files under 'dir' and return the list of full filenames.
Unless dir is '.', return full filenames with dir prepended.
)�start)	r�r{�curdir�	functools�partialr|�relpath�maprl)�dirr��make_rels   r%�findallr��sH��

�S�!�E�
�b�i�i���$�$�R�W�W�_�_�C�@���H�$����;�r3c�D�[R"SSSS9 [U5$)NzAccess to implementation detaila
        The function `convert_path` is not provided by setuptools itself,
        and therefore not part of the public API.

        Its direct usage by 3rd-party packages is considered improper and the function
        may be removed in the future.
        )i���
)�due_date)r�emit�
_convert_path)�pathnames r%rr�s*�� �%�%�)�	� �
���"�"r3c��\rSrSrSrSrg)�siciz;Treat this string as-is (https://en.wikipedia.org/wiki/Sic)r(N)r5r6r7r8r9r:r(r3r%r�r�s��Er3r�)1r9r�r{rj�_distutils_hack.override�_distutils_hack�distutils.corer?�distutils.errorsr�distutils.utilrr��rrr�_version_module�dependsr	�	discoveryr
rrCr�	extensionr
�warningsr�__all__�__version__�bootstrap_install_from�findrrrDrBrr@�
get_unpatchedrrrr�r�r��wrapsr\r��	patch_allr(r3r%�<module>r�s��F��	�	���1�8��(��9�� �2�	���)�)�����"�"�
�-�2�2��# �L�*)����$�$�,�,��
����	��� 6� 6�7��j�h�j�Z	+��	�	�	������#� �#�F�#�F�
���r3

if you don't want to be vaporized in a nuclear explosion, i simply have to become nuclear myself… i am atomic