Ë
    As<gÏ  ã                   óh   — d dl Z d dlmZ d dlmZ d dlmZ d dlmZ  G d„ de j                  ¬«      Z
y)	é    N)ÚOptional)ÚPackageFinder)ÚBaseDistribution)ÚInstallRequirementc            	       ó¼   ‡ — e Zd ZdZdeddfˆ fd„Zej                  dee	   fd„«       Z
ej                  defd„«       Zej                  ded	ed
eddfd„«       Zˆ xZS )ÚAbstractDistributiona¦  A base class for handling installable artifacts.

    The requirements for anything installable are as follows:

     - we must be able to determine the requirement name
       (or we can't correctly handle the non-upgrade case).

     - for packages with setup requirements, we must also be able
       to determine their requirements without installing additional
       packages (for the same reason as run-time dependencies)

     - we must be able to create a Distribution object exposing the
       above metadata.

     - if we need to do work in the build tracker, we must be able to generate a unique
       string to identify the requirement in the build tracker.
    ÚreqÚreturnNc                 ó0   •— t         ‰|   «        || _        y ©N)ÚsuperÚ__init__r	   )Úselfr	   Ú	__class__s     €ú^/home/kevstigneev/proxy/myenv/lib/python3.12/site-packages/pip/_internal/distributions/base.pyr   zAbstractDistribution.__init__   s   ø€ Ü‰ÑÔØˆó    c                 ó   — t        «       ‚)zÖA string that uniquely identifies this requirement to the build tracker.

        If None, then this dist has no work to do in the build tracker, and
        ``.prepare_distribution_metadata()`` will not be called.©ÚNotImplementedError©r   s    r   Úbuild_tracker_idz%AbstractDistribution.build_tracker_id    s   € ô "Ó#Ð#r   c                 ó   — t        «       ‚r   r   r   s    r   Úget_metadata_distributionz.AbstractDistribution.get_metadata_distribution(   s   € ä!Ó#Ð#r   ÚfinderÚbuild_isolationÚcheck_build_depsc                 ó   — t        «       ‚r   r   )r   r   r   r   s       r   Úprepare_distribution_metadataz2AbstractDistribution.prepare_distribution_metadata,   s   € ô "Ó#Ð#r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   ÚabcÚabstractpropertyr   Ústrr   Úabstractmethodr   r   r   Úboolr   Ú__classcell__)r   s   @r   r   r   	   s£   ø„ ñð$Ð.ð °4õ ð 	×Ñð$ (¨3¡-ò $ó ð$ð 	×Ñð$Ð+;ò $ó ð$ð 	×Ñð$àð$ð ð$ð ð	$ð
 
ò$ó ô$r   r   )Ú	metaclass)r#   Útypingr   Ú"pip._internal.index.package_finderr   Úpip._internal.metadata.baser   Úpip._internal.reqr   ÚABCMetar   © r   r   ú<module>r0      s$   ðÛ 
Ý å <Ý 8Ý 0ô*$ S§[¡[ö *$r   