관리-도구
편집 파일: build_meta.cpython-311.pyc
� ���S�ћ�H)�������������������������d�Z�ddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl mZ�ddlm Z mZmZmZmZ�ddlZddlZddlmZ�ddlmZ�ddlmZ�dd l mZ�dd lmZ�g�d�Z�ej��������dd �����������������������������������������������Z de �!��������������������dd������������v�Z"�G�d��de#������������Z$�G�d��dej%��������j&��������������������Z&ej'��������d����������������Z(d��Z)d��Z*d��Z+ej'��������d����������������Z,ee e-ee-ee-���������df���������f������������������Z. ��G�d��d������������Z/�G�d��de/������������Z0�G�d��de0������������Z1�e0��������������Z2e2j3��������Z3e2j4��������Z4e2j5��������Z5e2j6��������Z6e2j7��������Z7e"se2j8��������Z8e2j9��������Z9e2j:��������Z:�e1��������������Z;dS�) a-��A PEP 517 interface to setuptools Previously, when a user or a command line tool (let's call it a "frontend") needed to make a request of setuptools to take a certain action, for example, generating a list of installation requirements, the frontend would would call "setup.py egg_info" or "setup.py bdist_wheel" on the command line. PEP 517 defines a different method of interfacing with setuptools. Rather than calling "setup.py" directly, the frontend should: 1. Set the current directory to the directory with a setup.py file 2. Import this module into a safe python interpreter (one in which setuptools can potentially set global variables or crash hard). 3. Call one of the functions defined in PEP 517. What each function does is defined in PEP 517. However, here is a "casual" definition of the functions (this definition should not be relied on for bug reports or API stability): - `build_wheel`: build a wheel in the folder and return the basename - `get_requires_for_build_wheel`: get the `setup_requires` to build - `prepare_metadata_for_build_wheel`: get the `install_requires` - `build_sdist`: build an sdist in the folder and return the basename - `get_requires_for_build_sdist`: get the `setup_requires` to build Again, this is not a formal definition! Just a "taste" of the module. �����N)�Path)�Dict�Iterator�List�Optional�Union����)�errors)� same_path)� parse_strings)�SetuptoolsDeprecationWarning)� strtobool) �get_requires_for_build_sdist�get_requires_for_build_wheel� prepare_metadata_for_build_wheel�build_wheel�build_sdist�get_requires_for_build_editable�#prepare_metadata_for_build_editable�build_editable� __legacy__�SetupRequirementsError�SETUPTOOLS_ENABLE_FEATURES��zlegacy-editable�_�-c�������������������������e�Zd�Zd��ZdS�)r���c�����������������������||�_���������d�S��N)� specifiers)�selfr ���s��� �u/builddir/build/BUILD/imunify360-venv-2.5.2/opt/imunify360/venv/lib/python3.11/site-packages/setuptools/build_meta.py�__init__zSetupRequirementsError.__init__D���s ������$���������N)�__name__� __module__�__qualname__r#�����r$���r"���r���r���C���s#��������������%��%��%��%��%r$���r���c��������������������D�����e�Zd�Zd��Zeej��������d������������������������������ZdS�)�Distributionc������������������X�����t����������t����������|������������������������}t����������|�������������r���)�listr���r���)r!���r ����specifier_lists��� r"����fetch_build_eggszDistribution.fetch_build_eggsI���s%�������m�J�7�7�8�8��$�^�4�4�4r$���c��������������#�������K����t�����������j��������j��������}|�t�����������j��������_�������� �dV���|t�����������j��������_��������dS�#�|t�����������j��������_��������w�xY�w)zw Replace distutils.dist.Distribution with this class for the duration of this context. N)� distutils�corer*���)�cls�origs��� r"����patchzDistribution.patchN���sP������������~�*��&)� ��#� /��E�E�E�*.�I�N�'�'�'��$�I�N�'�.�.�.�.s ����=��AN)r%���r&���r'���r.����classmethod� contextlib�contextmanagerr4���r(���r$���r"���r*���r*���H���sL��������������5��5��5� ����/��/������[�/��/��/r$���r*���c���������������#�������K����t�����������j��������}�d��t�����������_�������� �dV���|�t�����������_��������dS�#�|�t�����������_��������w�xY�w)a ��Temporarily disable installing setup_requires Under PEP 517, the backend reports build dependencies to the frontend, and the frontend is responsible for ensuring they're installed. So setuptools (acting as a backend) should not try to install them. c�����������������������d�S�r���r(���)�attrss��� r"����<lambda>z+no_install_setup_requires.<locals>.<lambda>g���s������t��r$���N)� setuptools�_install_setup_requires)r3���s��� r"����no_install_setup_requiresr>���^���sK������������-�D�);�);�J�&�2� ����-1� �*�*�*��T� �*�1�1�1�1s����/��=c������������������D���������fd�t����������j����������������������D���������������S�)Nc������������������������g�|�]A}t�����������j�����������������������������t�����������j������������������������������|�������������������������?|��BS�r(���)�os�path�isdir�join)�.0�name�a_dirs��� �r"���� <listcomp>z1_get_immediate_subdirectories.<locals>.<listcomp>o���sM��������������b�g�m�m�B�G�L�L��PT�<U�<U�.V�.V�������r$���)rA����listdir)rG���s���`r"����_get_immediate_subdirectoriesrJ���n���s8����������������E�*�*�������r$���c�������������������������fd�t����������j��������|�������������D���������������} �|\��}n#�t����������$�r�t����������d�������������w�xY�w|S�)Nc��������������3����F����K����|�]}|������������������������������������|V����d�S�r�����endswith)rE����f� extensions��� �r"���� <genexpr>z'_file_with_extension.<locals>.<genexpr>u���s4�����������J�J�a�A�J�J�y�4I�4I�J��J�J�J�J�J�Jr$���z[No distribution was found. Ensure that `setup.py` is not empty and that it calls `setup()`.)rA���rI���� ValueError)� directoryrP����matching�files��� ` r"����_file_with_extensionrV���t���sm�������J�J�J�J�2�:�i�0�0�J�J�J�H� �������� �� �� �� 8� �� �� � ���� ��Ks ����(��Ac�����������������������t�����������j�����������������������������|�������������st����������j��������d������������S��t����������t����������dt����������������������|�������������S�)Nz%from setuptools import setup; setup()�open)rA���rB����exists�io�StringIO�getattr�tokenizerX�����setup_scripts��� r"����_open_setup_scriptr`�������sF������ �7�>�>�,�'�'��E��{�C�D�D�D�*�7�8�V�T�*�*�<�8�8�8r$���c���������������#�������K����t����������j����������������������5��t����������j��������dd�������������d�V���d�d�d��������������d�S�#�1�swxY�w�Y���d�S�)N�ignorezsetup.py install is deprecated)�warnings�catch_warnings�filterwarningsr(���r$���r"����suppress_known_deprecationrf�������s����������� � � "� "��������*J�K�K�K� �����������������������������������������s����=�A�Ac�������������������������e�Zd�ZdZdededee���������fd�Zdedee���������fd�Z dedee���������fd�Z dedee���������fd�Zdedee���������fd �Zd S�)�_ConfigSettingsTranslatorz�Translate ``config_settings`` into distutils-style command arguments. Only a limited number of options is currently supported. �key�config_settings�returnc�����������������������|pi�}|����������������������|������������pg�}t����������|t����������������������rt����������j��������|������������n|S�)aA�� Get the value of a specific key in ``config_settings`` as a list of strings. >>> fn = _ConfigSettingsTranslator()._get_config >>> fn("--global-option", None) [] >>> fn("--global-option", {}) [] >>> fn("--global-option", {'--global-option': 'foo'}) ['foo'] >>> fn("--global-option", {'--global-option': ['foo']}) ['foo'] >>> fn("--global-option", {'--global-option': 'foo'}) ['foo'] >>> fn("--global-option", {'--global-option': 'foo bar'}) ['foo', 'bar'] )�get� isinstance�str�shlex�split)r!���ri���rj����cfg�optss��� r"����_get_configz%_ConfigSettingsTranslator._get_config����sF������$��#����w�w�s�|�|�!�r��$.�t�S�$9�$9�C�u�{�4� � � �t�Cr$���c��������������#�������K����|pi�}h�d�}d|v�sd|v�rUt����������|���������������������d������������p|���������������������d������������pd������������}|�����������������������������������|v�rdndV���d|v�sd|v�rUt����������|���������������������d������������p|���������������������d������������pd������������}|�����������������������������������|v�rdndV���|����������������������d |������������E�d {V����d S�)a��� Let the user specify ``verbose`` or ``quiet`` + escape hatch via ``--global-option``. Note: ``-v``, ``-vv``, ``-vvv`` have similar effects in setuptools, so we just have to cover the basic scenario ``-v``. >>> fn = _ConfigSettingsTranslator()._global_args >>> list(fn(None)) [] >>> list(fn({"verbose": "False"})) ['-q'] >>> list(fn({"verbose": "1"})) ['-v'] >>> list(fn({"--verbose": None})) ['-v'] >>> list(fn({"verbose": "true", "--global-option": "-q --no-user-cfg"})) ['-v', '-q', '--no-user-cfg'] >>> list(fn({"--quiet": None})) ['-q'] >����0�no�off�false�verbosez --verbose�1z-qz-v�quietz--quietz--global-optionN)ro���rm����lowerrt���)r!���rj���rr����falsey�levels��� r"����_global_argsz&_ConfigSettingsTranslator._global_args����s���������*��#���,�,�,������{�c�1�1����� �*�*�I�c�g�g�k�.B�.B�I�c�J�J�E� �;�;�=�=�F�2�2�4�4��=�=�=��c�>�>�Y�#�-�-������(�(�E�C�G�G�I�,>�,>�E�#�F�F�E� �;�;�=�=�F�2�2�4�4��=�=�=��#�#�$5��G�G�G�G�G�G�G�G�G�G�Gr$���c��������������#�������K����|pi�}d|v�r,t����������t����������|d���������pd������������������������}|rdndV���d|v�rdt����������|d���������������������gE�d{V����dS�dS�)a��� The ``dist_info`` command accepts ``tag-date`` and ``tag-build``. .. warning:: We cannot use this yet as it requires the ``sdist`` and ``bdist_wheel`` commands run in ``build_sdist`` and ``build_wheel`` to reuse the egg-info directory created in ``prepare_metadata_for_build_wheel``. >>> fn = _ConfigSettingsTranslator()._ConfigSettingsTranslator__dist_info_args >>> list(fn(None)) [] >>> list(fn({"tag-date": "False"})) ['--no-date'] >>> list(fn({"tag-date": None})) ['--no-date'] >>> list(fn({"tag-date": "true", "tag-build": ".a"})) ['--tag-date', '--tag-build', '.a'] ztag-datery���z --tag-datez --no-datez tag-buildz--tag-buildN)r���ro���)r!���rj���rr����vals��� r"����__dist_info_argsz*_ConfigSettingsTranslator.__dist_info_args����s�����������&��#��������C��J�� :�7�;�;�<�<�C�#&�7�<�<�K�8�8�8��#���%�s�3�{�+;�'<�'<�=�=�=�=�=�=�=�=�=�=���r$���c��������������#�������K����|pi�}|����������������������d������������p|����������������������d������������}|sdS�dt����������|������������gE�d{V����dS�)a�� The ``editable_wheel`` command accepts ``editable-mode=strict``. >>> fn = _ConfigSettingsTranslator()._editable_args >>> list(fn(None)) [] >>> list(fn({"editable-mode": "strict"})) ['--mode', 'strict'] z editable-mode� editable_modeNz--mode)rm���ro���)r!���rj���rr����modes��� r"����_editable_argsz(_ConfigSettingsTranslator._editable_args����sj������������#����w�w��'�'�C�3�7�7�?�+C�+C���� ��F��c�$�i�i�(�(�(�(�(�(�(�(�(�(r$���c��������������#����B���K����|�����������������������d|������������E�d{V����dS�)av�� Users may expect to pass arbitrary lists of arguments to a command via "--global-option" (example provided in PEP 517 of a "escape hatch"). >>> fn = _ConfigSettingsTranslator()._arbitrary_args >>> list(fn(None)) [] >>> list(fn({})) [] >>> list(fn({'--build-option': 'foo'})) ['foo'] >>> list(fn({'--build-option': ['foo']})) ['foo'] >>> list(fn({'--build-option': 'foo'})) ['foo'] >>> list(fn({'--build-option': 'foo bar'})) ['foo', 'bar'] >>> list(fn({'--global-option': 'foo'})) [] z--build-optionN)rt����r!���rj���s��� r"����_arbitrary_argsz)_ConfigSettingsTranslator._arbitrary_args��s7����������*��#�#�$4�o�F�F�F�F�F�F�F�F�F�F�Fr$���N) r%���r&���r'����__doc__ro����_ConfigSettingsr���rt���r���r�����)_ConfigSettingsTranslator__dist_info_argsr����r����r(���r$���r"���rh���rh�������s������������������D�s��D�_��D��c���D��D��D��D�,H�O��H��� ��H��H��H��H�@>���>�H�S�M��>��>��>��>�4)�o��)�(�3�-��)��)��)��)� G���G�8�C�=��G��G��G��G��G��Gr$���rh���c��������������������������e�Zd�Zd��Zdd�Zdd�Zdd�Zdeded efd �Zdeded e fd�Z �dd�Zd ��Z �dd�Z dd�Zdee���������d ee���������fd�Zes �dd�Zdd�Z �dd�ZdS�dS�)�_BuildMetaBackendc������������������D����g�t�����������j��������d�d�����������|����������������������|�������������d�t�����������_�������� �t���������������������������������������������5��|�������������������������������������d�d�d��������������n#�1�swxY�w�Y���n!#�t����������$�r}||j��������z ��}Y�d�}~nd�}~ww�xY�w|S�)Nr ����egg_info)�sys�argvr����r*���r4���� run_setupr���r ���)r!���rj����requirements�es��� r"����_get_build_requiresz%_BuildMetaBackend._get_build_requires��s������� � �X�b�q�b�\� � � � �� /� /� �� � ��� )��#�#�%�%�� !�� !���� � � � !�� !�� !�� !�� !�� !�� !�� !�� !�� !�� !����� !�� !�� !�� !���%�� )�� )�� )��A�L�(�L�L�L�L�L�L����� )������s;����A?��A3�'A?��3A7�7A?��:A7�;A?��? B� B�B�setup.pyc����������������������t�����������j�����������������������������|������������}d}t����������|������������5�}|��������������������������������������������������������dd������������}d�d�d��������������n#�1�swxY�w�Y��� �t ����������|t�������������������������������������d�S�#�t����������$�r*}|j ��������r��t����������j��������ddd��������������Y�d�}~d�S�d�}~ww�xY�w)N�__main__z\r\nz\nz6Running `setup.py` directly as CLI tool is deprecated.znPlease avoid using `sys.exit(0)` or similar statements that don't fit in the paradigm of a configuration file.zAhttps://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html)�see_url)rA���rB����abspathr`����read�replace�exec�locals� SystemExit�coder ����emit)r!���r_����__file__r%���rO���r����r����s��� r"���r����z_BuildMetaBackend.run_setup-��s*�������7�?�?�<�0�0���� �� )� )�� 4�Q��6�6�8�8�#�#�G�U�3�3�D� 4�� 4�� 4�� 4�� 4�� 4�� 4�� 4�� 4�� 4�� 4����� 4�� 4�� 4�� 4� ���v�x�x� � � � � ���� �� �� ��v�� ��(�-�H�J�+� �� �� �� �� �� �� �� �� �� ����� ���s)����)A&�&A*�-A*�2B�� C�B?�?CNc������������������2�����|�����������������������|dg�������������S�)N�wheel�r�����r����r����s��� r"���r���z._BuildMetaBackend.get_requires_for_build_wheelD��s�������'�'��w�i�'�P�P�Pr$���c������������������0�����|�����������������������|g��������������S�)Nr����r����r����s��� r"���r���z._BuildMetaBackend.get_requires_for_build_sdistG��s�������'�'��b�'�I�I�Ir$����metadata_directory�suffixrk���c�����������������������|�����������������������||������������}t����������|j��������|������������s"t����������j��������t����������|������������|�������������|j��������S�)z� PEP 517 requires that the .dist-info directory be placed in the metadata_directory. To comply, we MUST copy the directory to the root. Returns the basename of the info directory, e.g. `proj-0.0.0.dist-info`. )�_find_info_directoryr����parent�shutil�movero���rF���)r!���r����r�����info_dirs��� r"����_bubble_up_info_directoryz+_BuildMetaBackend._bubble_up_info_directoryJ��sP��������,�,�-?��H�H�����*<�=�=�� ;��K��H� � �'9�:�:�:��}�r$���c������������������L�����t����������j��������|������������D�]s\��}}}�fd�|D���������������}t����������|������������dk����st����������|������������dk����r9t����������|������������dk����sJ�d���d����������������t����������||d���������������������c�S��td���d|���}t ����������j��������|�������������)Nc������������������>������g�|�]}|������������������������������������|��S�r(���rM���)rE���rO���r����s��� �r"���rH���z:_BuildMetaBackend._find_info_directory.<locals>.<listcomp>Y��s*�������@�@�@��Q�Z�Z��-?�-?�@�!�@�@�@r$���r���r ���z Multiple z directories foundzNo z directory found in )rA����walk�lenr���r ���� InternalError)r!���r����r����r�����dirsr���� candidates�msgs��� ` r"���r����z&_BuildMetaBackend._find_info_directoryW��s��������!�w�'9�:�:�� 3�� 3�O�F�D�!�@�@�@�@�T�@�@�@�J��:���!�#�#�s�4�y�y�A�~�~��:���!�+�+�+�-S��-S�-S�-S�+�+�+��F�J�q�M�2�2�2�2�2��(6��E�F�D�D�0B�D�D���"�3�'�'�'r$���c������������������H����g�t�����������j��������d�d�����������|����������������������|�������������d�d�|�d�t�����������_��������t������������������������5��|�������������������������������������d�d�d��������������n#�1�swxY�w�Y���|����������������������|d�������������|����������������������|d������������S�)Nr ���� dist_infoz--output-dirz--keep-egg-infoz .egg-infoz .dist-info)r����r����r����r>���r����r�����r!���r����rj���s��� r"���r���z2_BuildMetaBackend.prepare_metadata_for_build_wheelb��s������� � �X�b�q�b�\� � � � �� /� /� �� � �� � � � � �� � ����'� (� (�� �� ��N�N���� �� �� �� �� �� �� �� �� �� �� ����� �� �� �� �� �&�&�'9�;�G�G�G��-�-�.@�,�O�O�Os����A-�-A1�4A1c�����������������������t�����������j�����������������������������|������������}t����������j��������|d��������������d|d�}t ����������j��������di�|��5�}g�t����������j��������d�d�����������|����������������������|�������������|�d�|�t����������_��������t������������������������5��|�� �����������������������������������d�d�d��������������n#�1�swxY�w�Y���t����������||������������}t�����������j�����������������������������||������������}t�����������j��������� ��������������������|������������rt����������j��������|�������������t����������j��������t�����������j�����������������������������||������������|�������������d�d�d��������������n#�1�swxY�w�Y���|S�)NT)�exist_okz.tmp-)�prefix�dirr ���z --dist-dirr(���)rA���rB���r�����makedirs�tempfile�TemporaryDirectoryr����r����r����r>���r����rV���rD���rY����remove�rename) r!���� setup_command�result_extension�result_directoryrj���� temp_opts�tmp_dist_dir�result_basename�result_paths ��� r"����_build_with_temp_dirz&_BuildMetaBackend._build_with_temp_dirs��s��������7�?�?�+;�<�<��� ��$�t�4�4�4�4�&�/?�@�@� � � (� 5� 5�9� 5� 5�� P�����"�1�"����"�"�?�3�3������� � ���C�H��+�,�,�� !�� !���� � � � !�� !�� !�� !�� !�� !�� !�� !�� !�� !�� !����� !�� !�� !�� !��3�<�AQ�R�R�O��'�,�,�'7��I�I�K��w�~�~�k�*�*�� '�� �+�&�&�&��I�b�g�l�l�<��A�A�;�O�O�O�! P�� P�� P�� P�� P�� P�� P�� P�� P�� P�� P����� P�� P�� P�� P�$��s8����A E$�B7�+E$�7B; �;E$�>B; �?BE$�$E(�+E(c�����������������������t������������������������5��|����������������������dg|����������������������|�������������d||������������cd�d�d��������������S�#�1�swxY�w�Y���d�S�)N�bdist_wheel�.whl)rf���r����r����)r!����wheel_directoryrj���r����s��� r"���r���z_BuildMetaBackend.build_wheel���s��������(� )� )�� �� ��,�,��G��!5�!5�o�!F�!F�G���� ��� �� �� �� �� �� �� �� �� �� �� �� ����� �� �� �� �� �� s����.A � A�Ac������������������6�����|�����������������������g�d�d||������������S�)N)�sdistz --formats�gztarz.tar.gz)r����)r!����sdist_directoryrj���s��� r"���r���z_BuildMetaBackend.build_sdist���s)�������(�(�+�+�+�Y��� �� �� r$���c������������������������|sd�S�t����������t����������|���������������������������������d������������������������}t����������|������������dk����sJ��|rt ����������|d���������������������nd�S�)Nz*.dist-infor ���r���)r,���r����globr����ro���)r!���r�����dist_info_candidatess��� r"����_get_dist_info_dirz$_BuildMetaBackend._get_dist_info_dir���sl������!�� ��4�#�D�);�$<�$<�$A�$A�-�$P�$P�Q�Q���'�(�(�A�-�-�-�-�/C�M�s�'��*�+�+�+��Mr$���c������������������������|�����������������������|������������}|rd|gng�}dg|�|����������������������|�������������}t������������������������5��|����������������������|d||������������cd�d�d��������������S�#�1�swxY�w�Y���d�S�)Nz--dist-info-dir�editable_wheelr����)r����r����rf���r����)r!���r����rj���r����r����rs����cmds��� r"���r���z _BuildMetaBackend.build_editable���s���������.�.�/A�B�B�H�4<�D�%�x�0�0�"�D�#�R�d�R�T�-@�-@��-Q�-Q�R�C�+�-�-�� �� ��0�0����/���� �� �� �� �� �� �� �� �� �� �� �� ����� �� �� �� �� �� s����A+�+A/�2A/c������������������,�����|�����������������������|������������S�r���)r���r����s��� r"���r���z1_BuildMetaBackend.get_requires_for_build_editable���s�������4�4�_�E�E�Er$���c������������������.�����|�����������������������||������������S�r���)r���r����s��� r"���r���z5_BuildMetaBackend.prepare_metadata_for_build_editable���s!��������8�8�"�O����� r$����r����r���)NN)r%���r&���r'���r����r����r���r���ro���r����r���r����r���r����r���r���r���r�����LEGACY_EDITABLEr���r���r���r(���r$���r"���r����r������s��������������������������.Q��Q��Q��Q�J��J��J��J��C������QT��������� (�s�� (�C�� (�D�� (�� (�� (�� (��37�P��P��P��P�"�����<�IM� �� �� �� � �� �� �� � N�X�c�]��N�x�PS�}��N��N��N��N������MQ� �� �� �� � F�� F�� F�� F��7;� �� �� �� �� �� �)��r$���r����c��������������������$�������e�Zd�ZdZd��fd� Z��xZS�)�_BuildMetaLegacyBackendaO��Compatibility backend for setuptools This is a version of setuptools.build_meta that endeavors to maintain backwards compatibility with pre-PEP 517 modes of invocation. It exists as a temporary bridge between the old packaging mechanism and the new packaging mechanism, and will eventually be removed. r����c������������������.�����t����������t����������j��������������������}t����������j�����������������������������t����������j�����������������������������|������������������������}|t����������j��������vr t����������j�����������������������������d|�������������t����������j��������d���������}|t����������j��������d<��� �t����������t����������|�������������� ��������������������|��������������|t����������j��������d�d��<���|t����������j��������d<���d�S�#�|t����������j��������d�d��<���|t����������j��������d<���w�xY�w)Nr���r^���)r,���r����rB���rA����dirnamer�����insertr�����superr����r����)r!���r_����sys_path� script_dir� sys_argv_0� __class__s��� �r"���r����z!_BuildMetaLegacyBackend.run_setup���s������������>�>���W�_�_�R�W�_�_�\�%B�%B�C�C� ��S�X�%�%��H�O�O�A�z�*�*�*� ��X�a�[� �"����� %��)�4�0�0�:�:��:�U�U�U��#�C�H�Q�Q�Q�K�$�C�H�Q�K�K�K���#�C�H�Q�Q�Q�K�$�C�H�Q�K�$�$�$�$s����')C2��2"Dr����)r%���r&���r'���r����r����� __classcell__)r����s���@r"���r����r�������sG��������������� �� �%��%��%��%��%��%��%��%��%��%r$���r����)<r����rZ���rA���rp���r����r]���r����r6���r����rc����pathlibr����typingr���r���r���r���r���r<���r0���r���r ����_pathr����_reqsr���r ����distutils.utilr����__all__�getenvr}���r���r����r����� BaseExceptionr����distr*���r7���r>���rJ���rV���r`���rf���ro���r����rh���r����r�����_BACKENDr���r���r���r���r���r���r���r���r���r(���r$���r"����<module>r�������s[�������8� � � � �� � � � ������� � � � ������� � � � ��������������������������������8��8��8��8��8��8��8��8��8��8��8��8��8��8������������������������������������������ �� �� �� �� �� ��2��2��2��2��2��2��$��$��$��$��$��$��������'�R�Y�'C�R�H�H�N�N�P�P���#�'A�'I�'I�#�s�'S�'S�S��%��%��%��%��%�]��%��%��%� /��/��/��/��/�:�?�/��/��/��/�,���2��2����2������ �� �� �9��9��9�������������4��U�3��S� �4�+?�%@� @�A�B���|G��|G��|G��|G��|G��|G��|G��|G�~b��b��b��b��b�1��b��b��b�J%%��%%��%%��%%��%%�/��%%��%%��%%�R������'�D���'�D���#+�#L�� ��"���"����-�&.�&N�#�*2�*V�'��,�N��%� $� &� &� � � r$���