U l a&@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 rVC:\Users\vtejo\AppData\Local\Temp\pip-unpacked-wheel-wx4infiz\setuptools\build_meta.py__init__5szSetupRequirementsError.__init__N)__name__ __module__ __qualname__rrrrrr 4sc@s&eZdZddZeejddZdS) DistributioncCstttt|}t|dSr )listmapstrrr )rr Zspecifier_listrrrfetch_build_eggs:szDistribution.fetch_build_eggsccs*tjj}|tj_z dVW5|tj_XdS)zw Replace distutils.dist.Distribution with this class for the duration of this context. N) distutilscorer)clsorigrrrpatch?s  zDistribution.patchN)rrrr classmethod contextlibcontextmanagerrrrrrr9srcCs*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_strOsr)csfddtDS)Ncs&g|]}tjtj|r|qSr)ospathisdirjoin).0nameZa_dirrr ]sz1_get_immediate_subdirectories..r*listdirr0rr0r_get_immediate_subdirectories\sr4cs"fddt|D}|\}|S)Nc3s|]}|r|VqdSr endswithr.f extensionrr bs z'_file_with_extension..r2) directoryr:Zmatchingfilerr9r_file_with_extensionas  r>cCs&tj|stdSttdt|S)Nz%from setuptools import setup; setup()open)r*r+existsioStringIOgetattrtokenizer? setup_scriptrrr_open_setup_scriptjs  rGc@s`eZdZddZddZdddZdd d Zdd d Zdd dZddZ dddZ dddZ dS)_BuildMetaBackendcCs|pi}|dg|S)N--global-option) setdefaultrconfig_settingsrrr _fix_configts z_BuildMetaBackend._fix_configc Csz||}tjdddg|dt_z t|W5QRXWn,tk rt}z||j7}W5d}~XYnX|S)Negg_inforI)rMr#argvrr run_setupr r )rrL requirementserrr_get_build_requiresys  z%_BuildMetaBackend._get_build_requiressetup.pyc CsD|}d}t|}|dd}W5QRXtt||dtdS)N__main__z\r\nz\nexec)rGreadreplacerWcompilelocals)rrF__file__rr8coderrrrQs  z_BuildMetaBackend.run_setupNcCs||}|j|dgdS)NwheelrRrMrTrKrrrrs  z._BuildMetaBackend.get_requires_for_build_wheelcCs||}|j|gdS)Nr_r`rKrrrrs 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) NrNZ dist_infoz --egg-basecSsg|]}|dr|qS)z .dist-infor5r7rrrr1s zF_BuildMetaBackend.prepare_metadata_for_build_wheel..rT) ignore_errors)r#rPr)rQr*r3lenr4r+r-AssertionErrorshutilmovermtree)rmetadata_directoryrLZdist_info_directoryZ dist_infosrrrrs0  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)dirrNz --dist-dirrI)rMr*r+abspathrrr#rPrQr>r-r@removerename)rZ setup_commandZresult_extensionZresult_directoryrLZ tmp_dist_dirZresult_basename result_pathrrr_build_with_temp_dirs&       z&_BuildMetaBackend._build_with_temp_dircCs|dgd||S)N bdist_wheelz.whlrn)rwheel_directoryrLrgrrrrs z_BuildMetaBackend.build_wheelcCs|dddgd||S)Nsdistz --formatsgztarz.tar.gzrp)rsdist_directoryrLrrrr s  z_BuildMetaBackend.build_sdist)rU)N)N)N)NN)N) rrrrMrTrQrrrrnrr rrrrrHrs   ! rHcs"eZdZdZdfdd ZZS)_BuildMetaLegacyBackendaOCompatibility 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. rUc sttj}tjtj|}|tjkr6tjd|tjd}|tjd<ztt |j |dW5|tjdd<|tjd<XdS)NrrE) rr#r+r*dirnamerjinsertrPsuperrurQ)rrFsys_pathZ script_dirZ sys_argv_0 __class__rrrQs     z!_BuildMetaLegacyBackend.run_setup)rU)rrr__doc__rQ __classcell__rrrzrrus ru)"r|rAr*r#rDrdr setuptoolsrZsetuptools.py31compatr pkg_resourcesrZpkg_resources.py31compatr__all__ BaseExceptionr distrr)r4r>rGobjectrHruZ_BACKENDrrrrr r rrrrsD      k)