U
    cchK                     @   s  d 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mZmZ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 e	rddlmZ eeejf Zee Z!ee"dddZ#e"ee$dddZ%d.deddddZ&d/eed dddZ'e"e"ed e$dddZ(d0e"ee e$ed e"ddd Z)G d!d" d"Z*d#d$ Z+ee$d%d&d'Z,G d(d) d)ej-Z.G d*d+ d+e/Z0G d,d- d-e/Z1dS )1z
Load setuptools configuration from ``pyproject.toml`` files.

**PRIVATE MODULE**: API reserved for setuptools internal usage only.
    N)contextmanager)partial)TYPE_CHECKINGCallableDictOptionalMappingUnion)	FileErrorOptionError   )expand)apply)_PREVIOUSLY_DEFINED_WouldIgnoreFieldDistribution)filepathreturnc              
   C   s8   ddl m} t| d}||W  5 Q R  S Q R X d S )Nr   )tomlirb)setuptools.externr   openload)r   r   file r   Y/var/www/html/project/venv/lib/python3.8/site-packages/setuptools/config/pyprojecttoml.py	load_file   s    r   )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   r   c                 C   s   t |d|| }t| ||S )zeApply the configuration from a ``pyproject.toml`` file into an existing
    distribution object.
    T)read_configuration_apply)r3   r   ignore_option_errorsr   r   r   r   apply_configuration6   s    r7   T)r   r3   c              
   C   sf  t j| } t j| s(td| dt| p2i }|di }|di }|di }|rd|sh|shi S |r|d}t|t	 |
 }	|rt|ddk	r|d	|j n|d	d
 ||d< ||d< z|d|id}
t|
|  W nb tk
r@ } zBt||	|ri  W Y *S |r.td|jj d|  n W 5 d}~X Y nX |rbt 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 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
setuptoolszDSupport for `[tool.setuptools]` in `pyproject.toml` is still *beta*.include_package_dataNzinclude-package-dataT)r"   r8   ignored error:  - )ospathabspathisfiler
   r   r&   warningswarn_BetaConfigurationcopygetattr
setdefaultr:   r(   	Exception_skip_bad_configr,   r-   	__class____name__dirnameexpand_configuration)r   r   r6   r3   asdictZproject_tableZ
tool_tableZsetuptools_tablemsgZorig_setuptools_tableZsubsetr1   root_dirr   r   r   r4   B   s>    r4   )project_cfgsetuptools_cfgr3   r   c                 C   sr   |dks*|j jdkr.|j jdkr.|jdkr.dS |r6dS t|  }ddddh}||krntjt	 tdd d	S dS )
z8Be temporarily forgiving with invalid ``pyproject.toml``NFr*   versionpython_requireszrequires-python   )
stacklevelT)
metadatar*   rR   install_requiressetkeysrA   rB   _InvalidFilemessage)rP   rQ   r3   Zgiven_configZpopular_subsetr   r   r   rH      s     

rH   )r   rO   r6   r3   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   rO   r6   r3   r   r   r   rL      s    rL   c                   @   s`  e Zd Zd4eee eed dddZdddd	Zee	e
d
ddZd5ddZdd Zdd Zdd Zee	e	f dddZdee	e	f dddZde	dddZe	ee	e	f dd d!Zde	ee	e	f d"d#d$Zdee	e	f dd%d&Zdeee	e	f  d'd(d)Zdee	e	f eee	ef  d*d+d,Zdd-d.d/Zdd-d0d1Zdd-d2d3ZdS )6r\   NFr   r]   c                 C   sh   || _ |pt | _|di | _| jdg | _|di di | _| jdi | _|| _	|| _
d S )Nr"   dynamicr8   r9   )r   r=   getcwdrO   r&   rP   r^   rQ   dynamic_cfgr6   _dist)selfr   rO   r6   r3   r   r   r   __init__   s    z_ConfigExpander.__init__)r   c                 C   s0   ddl m} | j| jdd d}| jp.||S )Nr   r   r*   )src_rootr*   )setuptools.distr   rO   rP   r&   ra   )rb   r   attrsr   r   r   _ensure_dist   s    z_ConfigExpander._ensure_dist)	containerfieldfnc              	   C   s2   ||kr.t | j ||| ||< W 5 Q R X d S N)_ignore_errorsr6   )rb   rh   ri   rj   r   r   r   _process_field   s    z_ConfigExpander._process_fieldpackage-datac                 C   s   | j |i }t|S rk   )rQ   r&   _expandcanonic_package_data)rb   ri   package_datar   r   r   _canonic_package_data   s    z%_ConfigExpander._canonic_package_datac              	   C   sl   |    |   | d |  }t|| j| j}|*}|j}|   | | | 	|| W 5 Q R X | j
S )Nzexclude-package-data)_expand_packagesrr   rg   _EnsurePackagesDiscoveredrP   rQ   package_dir_expand_data_files_expand_cmdclass_expand_all_dynamicr   )rb   r3   ctxensure_discoveredru   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findrO   package-dirfill_package_dir)rQ   r&   
isinstancelisttupledictrO   rF   rl   r6   ro   find_packages)rb   r{   r|   r   r   r   rs      s    


z _ConfigExpander._expand_packagesc                 C   s$   t tj| jd}| | jd| d S )N)rO   z
data-files)r   ro   canonic_data_filesrO   rm   rQ   )rb   
data_filesr   r   r   rv     s    z"_ConfigExpander._expand_data_files)ru   c                 C   s*   | j }ttj||d}| | jd| d S )N)ru   rO   cmdclass)rO   r   ro   r   rm   rQ   )rb   ru   rO   r   r   r   r   rw     s    z _ConfigExpander._expand_cmdclass)r3   ru   c              	      s   d fddj D }|j p0i      d dd | D }j	| d S )N)rR   readmeentry-pointsscriptsgui-scriptsclassifiersdependenciesoptional-dependenciesc                    s$   i | ]}|kr|  |qS r   )_obtain.0ri   r3   ru   rb   specialr   r   
<dictcomp>  s    z7_ConfigExpander._expand_all_dynamic.<locals>.<dictcomp>)rR   r   r   r   Zoptional_dependenciesc                 S   s   i | ]\}}|d k	r||qS rk   r   )r   kvr   r   r   r   &  s       )
r^   update_obtain_entry_points_obtain_version_obtain_readme_obtain_classifiers_obtain_dependencies_obtain_optional_dependenciesitemsrP   )rb   r3   ru   Zobtained_dynamicZupdatesr   r   r   rx     s    

z#_ConfigExpander._expand_all_dynamic)r3   ri   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   r6   r   )rb   r3   ri   ZpreviousrN   r   r   r   _ensure_previously_set)  s
    
z&_ConfigExpander._ensure_previously_set)	specifierru   c              
   C   s~   t | jj | j}d|kr6t|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   attrz	invalid `z`: )rl   r6   rO   ro   
read_files	read_attrr/   )rb   r   	directiveru   rO   r   r   r   _expand_directive3  s    z!_ConfigExpander._expand_directive)r3   ri   ru   c                 C   s4   || j kr$| d| | j | |S | || d S )Nztool.setuptools.dynamic.)r`   r   r   )rb   r3   ri   ru   r   r   r   r   ?  s    
z_ConfigExpander._obtainc                 C   s,   d| j kr(d| jkr(t| |d|S d S )NrR   )r^   r`   ro   rR   r   )rb   r3   ru   r   r   r   r   I  s    z_ConfigExpander._obtain_version)r3   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   )r^   r`   r   r&   r   )rb   r3   r`   r   r   r   r   O  s    
z_ConfigExpander._obtain_readme)r3   ru   r   c                    sz   d}t fdd|D sd S |d|}|d kr8d S t|di ttd fdd}|dd	 |d
d  S )N)r   r   r   c                 3   s   | ]}| j kV  qd S rk   )r^   r   rb   r   r   	<genexpr>a  s     z7_ConfigExpander._obtain_entry_points.<locals>.<genexpr>r   )ri   groupc                    s@   |kr< |}| jkr4t| |}t|t | | < d S rk   )popr^   r   r[   rA   rB   )ri   r   valuerN   Zexpandedgroupsrb   r   r   _set_scriptsk  s    

z:_ConfigExpander._obtain_entry_points.<locals>._set_scriptsr   Zconsole_scriptsr   Zgui_scripts)anyr   ro   entry_pointsstr)rb   r3   ru   fieldsr   r   r   r   r   r   ]  s    



z$_ConfigExpander._obtain_entry_points)r3   c                 C   s(   d| j kr$| |di }|r$| S d S )Nr   )r^   r   
splitlinesrb   r3   r   r   r   r   r   z  s
    
z#_ConfigExpander._obtain_classifiersc                 C   s(   d| j kr$| |di }|r$t|S d S )Nr   )r^   r   _parse_requirements_listr   r   r   r   r     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     s    zA_ConfigExpander._obtain_optional_dependencies.<locals>.<dictcomp>)r^   r`   r   r   AssertionErrorr   r   )rb   r3   Zoptional_dependencies_mapr   r   r   r     s    



z-_ConfigExpander._obtain_optional_dependencies)NFN)rn   )rJ   
__module____qualname__r   r   _Pathboolrc   rg   r   r   rm   rr   r   rs   rv   r   rw   rx   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r\      s>      
 

 
r\   c                 C   s   dd |   D S )Nc                 S   s&   g | ]}|  r|  d s|qS )#)r+   
startswith)r   liner   r   r   
<listcomp>  s    z,_parse_requirements_list.<locals>.<listcomp>)r   )r   r   r   r   r     s    r   )r6   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 )Nr;   r<   )rG   r,   r-   rI   rJ   )r6   r1   r   r   r   rl     s    
rl   c                       s>   e Zd Zdeed fddZ fddZ fddZ  ZS )	rt   r   )distributionrP   rQ   c                    s   t  | || _|| _d S rk   )superrc   _project_cfg_setuptools_cfg)rb   r   rP   rQ   rI   r   r   rc     s    z"_EnsurePackagesDiscovered.__init__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``.
        r}   Nr*   
py-modulesr{   )ra   r   rF   r   ru   set_defaultsZ_ignore_ext_modulesrV   r*   r   r&   
py_modulesr{   r   	__enter__)rb   r3   cfgru   r   r   r   r     s    


z#_EnsurePackagesDiscovered.__enter__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``.
        r{   r   )r   rF   ra   r{   r   r   __exit__)rb   exc_type	exc_value	tracebackr   r   r   r     s    z"_EnsurePackagesDiscovered.__exit__)rJ   r   r   r   rc   r   r   __classcell__r   r   r   r   rt     s     rt   c                   @   s   e Zd ZdZdS )rC   zJExplicitly inform users that some `pyproject.toml` configuration is *beta*N)rJ   r   r   __doc__r   r   r   r   rC     s   rC   c                   @   s   e Zd ZdZedd ZdS )rZ   a  The given `pyproject.toml` file is invalid and would be ignored.
    !!


    ############################
    # Invalid `pyproject.toml` #
    ############################

    Any configurations in `pyproject.toml` will be ignored.
    Please note that future releases of setuptools will halt the build process
    if an invalid file is given.

    To prevent setuptools from considering `pyproject.toml` please
    DO NOT include the `[project]` or `[tool.setuptools]` tables in your file.
    

!!
    c                 C   s   ddl m} || jS )Nr   )cleandoc)inspectr   r   )clsr   r   r   r   r[     s    z_InvalidFile.messageN)rJ   r   r   r   classmethodr[   r   r   r   r   rZ     s   rZ   )F)TFN)NFN)2r   loggingr=   rA   
contextlibr   	functoolsr   typingr   r   r   r   r   r	   Zsetuptools.errorsr
   r   r%   r   ro   Z_apply_pyprojecttomlr   r5   r   r   re   r   r   PathLiker   	getLoggerrJ   r,   r   r   r   r(   r7   r4   rH   rL   r\   r   rl   EnsurePackagesDiscoveredrt   UserWarningrC   rZ   r   r   r   r   <module>   sh    
    P       U(