U Qab}%@s dZddlZddlZddlZddlZddlZddlZddlZddlZddl m Z ddl m Z ddl mZdddd d d d gZGd d d eZGdddejjZddZddZddZddZGdddeZGdddeZeZejZejZejZejZej Z eZ!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)TemporaryDirectory)parse_requirements)makedirsget_requires_for_build_sdistget_requires_for_build_wheel prepare_metadata_for_build_wheel build_wheel build_sdist __legacy__SetupRequirementsErrorc@seZdZddZdS)r cCs ||_dSN) specifiers)selfr r9/usr/lib/python3.8/site-packages/setuptools/build_meta.py__init__4szSetupRequirementsError.__init__N)__name__ __module__ __qualname__rrrrrr 3sc@s&eZdZddZeejddZdS) DistributioncCstttt|}t|dSr )listmapstrrr )rr Zspecifier_listrrrfetch_build_eggs9szDistribution.fetch_build_eggsccs*tjj}|tj_z dVW5|tj_XdS)zw Replace distutils.dist.Distribution with this class for the duration of this context. N) distutilsZcorer)clsZorigrrrpatch>s  zDistribution.patchN)rrrr classmethod contextlibcontextmanagerrrrrrr8srcCs*tjddkr&t|ts&|tS|S)z Convert a filename to a string (on Python 2, explicitly a byte string, not Unicode) as distutils checks for the exact type str. r)sys version_info isinstancerencodegetfilesystemencoding)srrr_to_strNsr'csfddtDS)Ncs&g|]}tjtj|r|qSr)ospathisdirjoin).0nameZa_dirrr \sz1_get_immediate_subdirectories..r(listdirr.rr.r_get_immediate_subdirectories[sr2cs"fddt|D}|\}|S)Nc3s|]}|r|VqdSr endswithr,f extensionrr as z'_file_with_extension..r0)Z directoryr8Zmatchingfilerr7r_file_with_extension`s  r;cCs&tj|stdSttdt|S)Nz%from setuptools import setup; setup()open)r(r)existsioStringIOgetattrtokenizer< setup_scriptrrr_open_setup_scriptis  rDc@s`eZdZddZddZdddZdd d Zdd d Zdd dZddZ dddZ dddZ dS)_BuildMetaBackendcCs|pi}|dg|S)N--global-option) setdefaultrconfig_settingsrrr _fix_configss z_BuildMetaBackend._fix_configc Csz||}tjdddg|dt_z t|W5QRXWn,tk rt}z||j7}W5d}~XYnX|S)NZegg_inforF)rJr!argvrr run_setupr r )rrI requirementserrr_get_build_requiresxs  z%_BuildMetaBackend._get_build_requiressetup.pyc CsD|}d}t|}|dd}W5QRXtt||dtdS)N__main__z\r\nz\nexec)rDreadreplacerScompilelocals)rrC__file__rr6coderrrrMs  z_BuildMetaBackend.run_setupNcCs||}|j|dgdS)NZwheelrNrJrPrHrrrrs z._BuildMetaBackend.get_requires_for_build_wheelcCs||}|j|gdS)NrZr[rHrrrrs z._BuildMetaBackend.get_requires_for_build_sdistcCstjddddt|gt_||}ddt|D}t|dkrttt|dkrttj |t|d}q*t|dkst qq*||krt tj ||d|t j |dd|dS) NrKZ dist_infoz --egg-basecSsg|]}|dr|qS)z .dist-infor3r5rrrr/s zF_BuildMetaBackend.prepare_metadata_for_build_wheel..rT) ignore_errors)r!rLr'rMr(r1lenr2r)r+AssertionErrorshutilZmoveZrmtree)rmetadata_directoryrIZdist_info_directoryZ dist_infosrrrrs.  z2_BuildMetaBackend.prepare_metadata_for_build_wheelc Cs||}tj|}t|ddt|dv}tjdd|d|g|dt_|t ||}tj ||}tj |rt |t tj |||W5QRX|S)NT)exist_ok)dirrKz --dist-dirrF)rJr(r)abspathrrr!rLrMr;r+r=removerename)rZ setup_commandZresult_extensionZresult_directoryrIZ tmp_dist_dirZresult_basenameZ result_pathrrr_build_with_temp_dirs         z&_BuildMetaBackend._build_with_temp_dircCs|dgd||S)NZ bdist_wheelz.whlrf)rZwheel_directoryrIr`rrrrs z_BuildMetaBackend.build_wheelcCs|dddgd||S)NZsdistz --formatsZgztarz.tar.gzrg)rZsdist_directoryrIrrrr s  z_BuildMetaBackend.build_sdist)rQ)N)N)N)NN)N) rrrrJrPrMrrrrfrr rrrrrEqs    rEcs"eZdZdZdfdd ZZS)_BuildMetaLegacyBackendaCCompatibility 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. rQc sbttj}tjtj|}|tjkr6tjd|ztt|j |dW5|tjdd<XdS)NrrB) rr!r)r(dirnamercinsertsuperrhrM)rrCZsys_pathZ script_dir __class__rrrMs   z!_BuildMetaLegacyBackend.run_setup)rQ)rrr__doc__rM __classcell__rrrlrrhsrh)"rnr>r(r!rAr_rZ setuptoolsrZsetuptools.py31compatrZ pkg_resourcesrZpkg_resources.py31compatr__all__ BaseExceptionr Zdistrr'r2r;rDobjectrErhZ_BACKENDrrrrr r rrrrsD     h