0x1949 Team - FAZEMRX - MANAGER
Edit File: build_meta.cpython-310.pyc
o �_�a() � @ s d Z ddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddlmZ g d�Z G dd� de�ZG dd� de jj�Zejd d � �Zdd� Zd d� Zdd� Zejdd� �ZG dd� de�ZG dd� de�Ze� ZejZejZejZejZej Z e� Z!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)�parse_requirements)�get_requires_for_build_sdist�get_requires_for_build_wheel� prepare_metadata_for_build_wheel�build_wheel�build_sdist� __legacy__�SetupRequirementsErrorc @ s e Zd Zdd� ZdS )r c C s || _ d S �N)� specifiers)�selfr � r �7/usr/lib/python3/dist-packages/setuptools/build_meta.py�__init__5 s zSetupRequirementsError.__init__N)�__name__� __module__�__qualname__r r r r r r 4 s r c @ s&