U
    X7hG                     @  s  d Z ddlmZ ddlZddlZddlmZ ddlmZ ddl	m
Z
 ddlmZmZ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mZmZ erddlm Z  ddl!m"Z" e#e$Z%dddddZ&ddddddZ'd6dddddddZ(d7dddd d!d"d#d$Z)d8dd%dd dd&d'd(Z*G d)d* d*Z+d+d, Z,edd-d.d/Z-G d0d1 d1ej.Z/G d2d3 d3eZ0G d4d5 d5eZ1dS )9ac  
Load setuptools configuration from ``pyproject.toml`` files.

**PRIVATE MODULE**: API reserved for setuptools internal usage only.

To read project metadata, consider using
``build.util.project_wheel_metadata`` (https://pypi.org/project/build/).
For simple scenarios, you can also try parsing the file directly
with the help of ``tomllib`` or ``tomli``.
    )annotationsN)contextmanager)partial)TracebackType)TYPE_CHECKINGAnyCallableMapping   )StrPath)	FileErrorInvalidConfigError)SetuptoolsWarning   )expand)_PREVIOUSLY_DEFINED_MissingDynamicapply)SelfDistributionr   dict)filepathreturnc              
   C  s8   ddl m} t| d}||W  5 Q R  S Q R X d S )Nr
   )tomllibrb)Zcompat.py310r   openload)r   r   file r   Y/var/www/formularioweb/env/lib/python3.8/site-packages/setuptools/config/pyprojecttoml.py	load_file#   s    r!   bool)configr   r   c              
   C  s   ddl m} |jd}t|dr*|  z|| W S  |jk
r } zXd|j }|j	
ddkr|t| t|j d|j	 d	}t| d
| d W 5 d }~X Y nX d S )Nr   )_validate_pyprojectztrove-classifier_disable_downloadzconfiguration error: `projectzinvalid pyproject.toml config: .
) r$   ZFORMAT_FUNCTIONSgethasattrr%   validateZValidationErrorsummarynamestrip_loggerdebugdetails
ValueError)r#   r   	validatorZtrove_classifierexr.   errorr   r   r    r-   *   s    

r-   Fr   )distr   ignore_option_errorsr   c                 C  s   t |d|| }t| ||S )zeApply the configuration from a ``pyproject.toml`` file into an existing
    distribution object.
    T)read_configuration_apply)r8   r   r9   r#   r   r   r    apply_configuration?   s    r<   TDistribution | Nonezdict[str, Any])r   r   r9   r8   r   c           
   	   C  s2  t j| } t j| s(td| dt| p2i }|di }|di }|di }|rd|sh|shi S d|di krt  d|krt	jdd	 |r|j
d
k	r|d|j
 n|dd ||d< ||d< d|krt	jdd	 t| |d|id}t||  W 5 Q R X |r.t j| }	t||	||S |S )a  Read given configuration file and returns options from it as a dict.

    :param str|unicode filepath: Path to configuration file in the ``pyproject.toml``
        format.

    :param bool expand: Whether to expand directives and other computed values
        (i.e. post-process the given configuration)

    :param bool ignore_option_errors: Whether to silently ignore
        options, values of which could not be resolved (e.g. due to exceptions
        in directives such as file:, attr:, etc.).
        If False exceptions are propagated as expected.

    :param Distribution|None: Distribution object to which the configuration refers.
        If not given a dummy object will be created and discarded after the
        configuration is read. This is used for auto-discovery of packages and in the
        case a dynamic configuration (e.g. ``attr`` or ``cmdclass``) is expanded.
        When ``expand=False`` this object is simply ignored.

    :rtype: dict
    zConfiguration file z does not exist.r'   tool
setuptoolstools	distutilsz[tool.distutils])subjectNzinclude-package-dataTzext-modulesz[tool.setuptools.ext-modules])r'   r>   )ospathabspathisfiler   r!   r+   _ToolsTypoInMetadataemit_ExperimentalConfigurationinclude_package_data
setdefault_ignore_errorsr-   dirnameexpand_configuration)
r   r   r9   r8   asdictZproject_tableZ
tool_tableZsetuptools_tableZsubsetroot_dirr   r   r    r:   K   s6    
r:   StrPath | None)r#   rP   r9   r8   r   c                 C  s   t | ||| S )a  Given a configuration with unresolved fields (e.g. dynamic, cmdclass, ...)
    find their final values.

    :param dict config: Dict containing the configuration for the distribution
    :param str root_dir: Top-level directory for the distribution/project
        (the same directory where ``pyproject.toml`` is place)
    :param bool ignore_option_errors: see :func:`read_configuration`
    :param Distribution|None: Distribution object to which the configuration refers.
        If not given a dummy object will be created and discarded after the
        configuration is read. Used in the case a dynamic configuration
        (e.g. ``attr`` or ``cmdclass``).

    :rtype: dict
    )_ConfigExpanderr   r#   rP   r9   r8   r   r   r    rN      s    rN   c                   @  s  e Zd Zd=ddddddd	Zd
dddZddddddZd>ddZdd Zdd Zdd Z	ddddZ
d
dd d!d"Zd
dd#d$d%Zddd&d'd(Zd
ddd)d*d+Zd
dd d,d-Zd
d.d/d0d1Zd
dd2d3d4d5Zd
d6d7d8Zd
d6d9d:Zd
d6d;d<ZdS )?rR   NFr   rQ   r"   r=   rS   c                 C  sp   || _ |pt | _|di | _| jdg | _|di di | _| jdi | _|| _	|| _
t | _d S )Nr'   dynamicr>   r?   )r#   rC   getcwdrP   r+   project_cfgrT   setuptools_cfgdynamic_cfgr9   _distset_referenced_files)selfr#   rP   r9   r8   r   r   r    __init__   s    z_ConfigExpander.__init__r   r   c                 C  s0   ddl m} | j| jdd d}| jp.||S )Nr   r   r/   )src_rootr/   )setuptools.distr   rP   rV   r+   rY   )r\   r   attrsr   r   r    _ensure_dist   s    z_ConfigExpander._ensure_diststrr   )	containerfieldfnc              	   C  s2   ||kr.t | j ||| ||< W 5 Q R X d S N)rL   r9   )r\   rd   re   rf   r   r   r    _process_field   s    z_ConfigExpander._process_fieldpackage-datac                 C  s   | j |i }t|S rg   )rW   r+   _expandcanonic_package_data)r\   re   package_datar   r   r    _canonic_package_data   s    z%_ConfigExpander._canonic_package_datac              	   C  sz   |    |   | d |  }t|| j| j}|*}|j}|   | | | 	|| W 5 Q R X |j
| j
 | jS )Nzexclude-package-data)_expand_packagesrm   rb   _EnsurePackagesDiscoveredrV   rW   package_dir_expand_data_files_expand_cmdclass_expand_all_dynamicr[   updater#   )r\   r8   ctxensure_discoveredrp   r   r   r    r      s    

z_ConfigExpander.expandc              	   C  s   | j d}|d ks"t|ttfr&d S |d}t|tr~| j|d< | j di |d< t| j	 t
jf || j d< W 5 Q R X d S )NpackagesfindrP   package-dirfill_package_dir)rW   r+   
isinstancelisttupler   rP   rK   rL   r9   rj   find_packages)r\   rw   rx   r   r   r    rn      s    


z _ConfigExpander._expand_packagesc                 C  s$   t tj| jd}| | jd| d S )N)rP   z
data-files)r   rj   canonic_data_filesrP   rh   rW   )r\   
data_filesr   r   r    rq      s    z"_ConfigExpander._expand_data_fileszMapping[str, str])rp   c                 C  s*   | j }ttj||d}| | jd| d S )N)rp   rP   cmdclass)rP   r   rj   r   rh   rW   )r\   rp   rP   r   r   r   r    rr      s    z _ConfigExpander._expand_cmdclass)r8   rp   c              	     s   d fddj D }|j p0i      d dd | D }j	| d S )N)versionreadmeentry-pointsscriptsgui-scriptsclassifiersdependenciesoptional-dependenciesc                   s$   i | ]}|kr|  |qS r   )_obtain.0re   r8   rp   r\   specialr   r    
<dictcomp>   s    z7_ConfigExpander._expand_all_dynamic.<locals>.<dictcomp>)r   r   r   r   Zoptional_dependenciesc                 S  s   i | ]\}}|d k	r||qS rg   r   )r   kvr   r   r    r     s       )
rT   rt   _obtain_entry_points_obtain_version_obtain_readme_obtain_classifiers_obtain_dependencies_obtain_optional_dependenciesitemsrV   )r\   r8   rp   Zobtained_dynamicZupdatesr   r   r    rs      s    

z#_ConfigExpander._expand_all_dynamic)r8   re   c                 C  s2   t | |}|d kr.| js.d|d}t|d S )Nz#No configuration found for dynamic z.
Some dynamic fields need to be specified via `tool.setuptools.dynamic`
others must be specified via the equivalent attribute in `setup.py`.)r   r9   r   )r\   r8   re   previousmsgr   r   r    _ensure_previously_set  s
    
z&_ConfigExpander._ensure_previously_set)	specifierrp   c              
   C  s   ddl m} t| j~ | j}d|krV| j||d  t|d |W  5 Q R  S d|kr|t	|d ||W  5 Q R  S t
d| d|W 5 Q R X d S )Nr   )always_iterabler   attrz	invalid `z`: )more_itertoolsr   rL   r9   rP   r[   rt   rj   
read_files	read_attrr4   )r\   r   	directiverp   r   rP   r   r   r    _expand_directive  s    z!_ConfigExpander._expand_directive)r8   re   rp   c                 C  s4   || j kr$| d| | j | |S | || d S )Nztool.setuptools.dynamic.)rX   r   r   )r\   r8   re   rp   r   r   r    r   )  s    
z_ConfigExpander._obtainc                 C  s,   d| j kr(d| jkr(t| |d|S d S )Nr   )rT   rX   rj   r   r   )r\   r8   rp   r   r   r    r   3  s
    z_ConfigExpander._obtain_versionzdict[str, str] | None)r8   r   c                 C  sL   d| j krd S | j}d|kr<| |di |d dddS | |d d S )Nr   content-typez
text/x-rst)textr   )rT   rX   r   r+   r   )r\   r8   rX   r   r   r    r   <  s    
z_ConfigExpander._obtain_readmezdict[str, dict] | None)r8   rp   r   c                   sz   d}t fdd|D sd S |d|}|d kr8d S t|di ddd fdd}|d	d
 |dd  S )N)r   r   r   c                 3  s   | ]}| j kV  qd S rg   )rT   r   r\   r   r    	<genexpr>O  s     z7_ConfigExpander._obtain_entry_points.<locals>.<genexpr>r   rc   )re   groupc                   s8   |kr4 |}| jkr,tt| || | < d S rg   )poprT   r   r   r3   )re   r   valueZexpandedgroupsr\   r   r    _set_scriptsY  s
    

z:_ConfigExpander._obtain_entry_points.<locals>._set_scriptsr   Zconsole_scriptsr   Zgui_scripts)anyr   rj   entry_points)r\   r8   rp   fieldsr   r   r   r   r    r   K  s    


z$_ConfigExpander._obtain_entry_points)r8   c                 C  s(   d| j kr$| |di }|r$| S d S )Nr   )rT   r   
splitlinesr\   r8   r   r   r   r    r   e  s
    
z#_ConfigExpander._obtain_classifiersc                 C  s(   d| j kr$| |di }|r$t|S d S )Nr   )rT   r   _parse_requirements_listr   r   r   r    r   l  s
    
z$_ConfigExpander._obtain_dependenciesc                   sV   d j krd S d jkrF jd }t|ts0t fdd| D S  |d d S )Nr   c              	     s*   i | ]"\}}|t  d | |i qS )z.tool.setuptools.dynamic.optional-dependencies.)r   r   )r   r   r   r   r   r    r   y  s    zA_ConfigExpander._obtain_optional_dependencies.<locals>.<dictcomp>)rT   rX   r{   r   AssertionErrorr   r   )r\   r8   Zoptional_dependencies_mapr   r   r    r   s  s    




z-_ConfigExpander._obtain_optional_dependencies)NFN)ri   )__name__
__module____qualname__r]   rb   rh   rm   r   rn   rq   rr   rs   r   r   r   r   r   r   r   r   r   r   r   r   r    rR      s*      


	rR   c                 C  s   dd |   D S )Nc                 S  s&   g | ]}|  r|  d s|qS )#)r0   
startswith)r   liner   r   r    
<listcomp>  s    z,_parse_requirements_list.<locals>.<listcomp>)r   )r   r   r   r    r     s    r   )r9   c              
   c  sZ   | sd V  d S z
d V  W n< t k
rT } ztd|jj d|  W 5 d }~X Y nX d S )Nzignored error: z - )	Exceptionr1   r2   	__class__r   )r9   r6   r   r   r    rL     s    
rL   c                      sP   e Zd Zdddd fddZdd fdd	Zd
dddd fddZ  ZS )ro   r   r   )distributionrV   rW   c                   s   t  | || _|| _d S rg   )superr]   _project_cfg_setuptools_cfg)r\   r   rV   rW   r   r   r    r]     s    z"_EnsurePackagesDiscovered.__init__r   r^   c                   s   | j | j }}|di }||jp&i  ||_|j  |jjdkrV| j	
d|j_|jdkrl|
d|_|jdkr|
d|_t  S )zWhen entering the context, the values of ``packages``, ``py_modules`` and
        ``package_dir`` that are missing in ``dist`` are copied from ``setuptools_cfg``.
        ry   Nr/   
py-modulesrw   )rY   r   rK   rt   rp   set_defaults_ignore_ext_modulesmetadatar/   r   r+   
py_modulesrw   r   	__enter__)r\   r8   cfgrp   r   r   r    r     s    


z#_EnsurePackagesDiscovered.__enter__ztype[BaseException] | NonezBaseException | NonezTracebackType | NoneNone)exc_type	exc_value	tracebackr   c                   s4   | j d| jj | j d| jj t |||S )zWhen exiting the context, if values of ``packages``, ``py_modules`` and
        ``package_dir`` are missing in ``setuptools_cfg``, copy from ``dist``.
        rw   r   )r   rK   rY   rw   r   r   __exit__)r\   r   r   r   r   r   r    r     s    
z"_EnsurePackagesDiscovered.__exit__)r   r   r   r]   r   r   __classcell__r   r   r   r    ro     s   ro   c                   @  s   e Zd ZdZdS )rI   z``{subject}` in `pyproject.toml` is still *experimental* and likely to change in future releases.Nr   r   r   _SUMMARYr   r   r   r    rI     s   rI   c                   @  s   e Zd ZdZdS )rG   zNIgnoring [tools.setuptools] in pyproject.toml, did you mean [tool.setuptools]?Nr   r   r   r   r    rG     s   rG   )F)TFN)NFN)2__doc__
__future__r   loggingrC   
contextlibr   	functoolsr   typesr   typingr   r   r   r	   _pathr   errorsr   r   warningsr   r*   r   rj   Z_apply_pyprojecttomlr   r   r   r;   typing_extensionsr   r`   r   	getLoggerr   r1   r!   r-   r<   r:   rN   rR   r   rL   EnsurePackagesDiscoveredro   rI   rG   r   r   r   r    <module>   sH   
    K    ]-