o
    LK&h,#                  	   @  s  d Z ddlmZ ddlZddlZddlZddlmZ ddlm	Z	 ddl
mZmZmZ ejejejejedd Zejveg  ejd	d ddlZd
dlmZmZ d
dlmZ d
dlmZmZ d
dl m!Z! d
dl"m#Z# d
dl$m%Z% d
dl&m'Z' ddl(Z)g dZ*edddZ+dZ,ej-Z.ej-Z/dd Z0d'ddZ1dd Z2e)j3j2j e2_ erddl(m4Z5 ne6e)j3j4Z5G dd  d e5Z4d!d" Z7ej8fd#d$Z9G d%d& d&e:Z;e<  dS )(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   Commandr   r   r   find_packagesfind_namespace_packages	_CommandT_Command)boundc                 C  s>   G dd dt jj}|| }|jdd |jrt| d S d S )Nc                      s8   e Zd ZdZd fddZd fd	d
	Zdd Z  ZS )z4_install_setup_requires.<locals>.MinimalDistributionzl
        A minimal version of a distribution for supporting the
        fetch_build_eggs interface.
        attrsMapping[str, object]returnNonec                   s<   d} fddt |t  @ D }t | | j  d S )N)dependency_linkssetup_requiresc                   s   i | ]}| | qS  r"   ).0kr   r"   F/var/www/html/venv/lib/python3.10/site-packages/setuptools/__init__.py
<dictcomp>?   s    zQ_install_setup_requires.<locals>.MinimalDistribution.__init__.<locals>.<dictcomp>)setsuper__init__set_defaults_disable)selfr   _inclfiltered	__class__r%   r&   r*   =   s   z=_install_setup_requires.<locals>.MinimalDistribution.__init__Nc                   s6   zt  |\}}W |dfS  ty   |df Y S w )zAIgnore ``pyproject.toml``, they are not related to setup_requiresr"   )r)    _split_standard_project_metadata	Exception)r-   	filenamescfg_tomlr0   r"   r&   _get_project_config_filesD   s   zN_install_setup_requires.<locals>.MinimalDistribution._get_project_config_filesc                 S  s   dS )zl
            Disable finalize_options to avoid building the working set.
            Ref #2158.
            Nr"   r-   r"   r"   r&   finalize_optionsL   s    zE_install_setup_requires.<locals>.MinimalDistribution.finalize_options)r   r   r   r   N)__name__
__module____qualname____doc__r*   r7   r9   __classcell__r"   r"   r0   r&   MinimalDistribution7   s
    r@   T)ignore_option_errors)	distutilscorer   parse_config_filesr!   _fetch_build_eggs)r   r@   distr"   r"   r&   _install_setup_requires4   s   rG   rF   r   c              
   C  sf   z	|  | j W d S  ty2 } zd}d|jjv r-t|dr$||  | d| d  d }~ww )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!   r3   r1   r;   hasattrrI   announce)rF   exmsgr"   r"   r&   rE   Z   s   	

rE   c                  K  s"   t   t|  tjjdi | S )Nr"   )r   	configurerG   rB   rC   r   r%   r"   r"   r&   r   o   s   r   )r   c                      s   e Zd ZU dZdZded< d fdd	Ze	ddddZe	ddddZ	ddddZe	d ddZ
e	d ddZe	d ddZ  ZS )!r   a#  
    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   distributionrF   r   r   c                   s   t  | t| | dS )zj
        Construct the command for dist, updating
        vars(self) with any keyword parameters.
        N)r)   r*   varsupdate)r-   rF   kwr0   r"   r&   r*      s   zCommand.__init__commandstrreinit_subcommandsboolr   c                 K     d S r:   r"   r-   rU   rW   rT   r"   r"   r&   reinitialize_command      zCommand.reinitialize_commandr   c                 K  rY   r:   r"   rZ   r"   r"   r&   r[      r\   str | _Commandc                 K  s    t | ||}t|| |S r:   )r   r[   rR   rS   )r-   rU   rW   rT   cmdr"   r"   r&   r[      s   c                 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.
        NotImplementedErrorr8   r"   r"   r&   initialize_options      zCommand.initialize_optionsc                 C  r_   )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``).
        r`   r8   r"   r"   r&   r9      rc   zCommand.finalize_optionsc                 C  r_   )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).
        r`   r8   r"   r"   r&   run   rc   zCommand.run)rF   r   r   r   )F)rU   rV   rW   rX   r   r   )rU   r   rW   rX   r   r   )rU   r]   rW   rX   r   r   )r   r   )r;   r<   r=   r>   command_consumes_arguments__annotations__r*   r   r[   r   rb   r9   rd   r?   r"   r"   r0   r&   r      s&   
 %r   c                 C  s&   dd t j| ddD }tt jj|S )z%
    Find all files under 'path'
    c                 s  s.    | ]\}}}|D ]
}t j||V  q	qd S r:   )ospathjoin)r#   basedirsfilesfiler"   r"   r&   	<genexpr>   s    z#_find_all_simple.<locals>.<genexpr>T)followlinks)rg   walkfilterrh   isfile)rh   resultsr"   r"   r&   _find_all_simple   s   rt   c                 C  s6   t | }| tjkrtjtjj| d}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)	rt   rg   curdir	functoolspartialrh   relpathmaplist)dirrl   make_relr"   r"   r&   findall   s
   

r~   c                   @  s   e Zd ZdZdS )sicz;Treat this string as-is (https://en.wikipedia.org/wiki/Sic)N)r;   r<   r=   r>   r"   r"   r"   r&   r      s    r   )rF   r   )=r>   
__future__r   rw   rg   sysabcr   collections.abcr   typingr   r   r   rh   extendri   dirname__file__vendor_pathmodulespop_distutils_hack.override_distutils_hack r   r   dependsr   	discoveryr   r   rF   r   	extensionr   versionr   warningsr   distutils.corerB   __all__r   bootstrap_install_fromfindr   r   rG   rE   r   rC   r   r   get_unpatchedrt   rv   r~   rV   r   	patch_allr"   r"   r"   r&   <module>   sH    8
&\