U
ʗRe
@ s d dl Z d dlZd dlmZmZmZ ed Zde ee e
e
ee dddZe ee ee e ee dd d
Ze ee ee ddd
Z
e ee ee e
ee ee e
ee dddZe ee e
ee dddZe ee ee e ee ee ee ee e
e
e
ee dddZdS ) N)ListOptionalSequenceah
exec(compile('''
# This is -- a caller that pip uses to run setup.py
#
# - It imports setuptools before invoking setup.py, to enable projects that directly
# import from `distutils.core` to work with newer packaging standards.
# - It provides a clear error message when setuptools is not installed.
# - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so
# setuptools doesn't think the script is `-c`. This avoids the following warning:
# manifest_maker: standard file '-c' not found".
# - It generates a shim setup.py, for handling setup.cfg-only projects.
import os, sys, tokenize
try:
import setuptools
except ImportError as error:
print(
"ERROR: Can not execute `setup.py` since setuptools is not available in "
"the build environment.",
file=sys.stderr,
)
sys.exit(1)
__file__ = %r
sys.argv[0] = __file__
if os.path.exists(__file__):
filename = __file__
with tokenize.open(__file__) as f:
setup_py_code = f.read()
else:
filename = ""
setup_py_code = "from setuptools import setup; setup()"
exec(compile(setup_py_code, filename, "exec"))
''' % ({!r},), "", "exec"))
F)
setup_py_pathglobal_optionsno_user_configunbuffered_outputreturnc C sF t jg}|r|dg7 }|dt| g7 }|r4||7 }|rB|dg7 }|S )ao
Get setuptools command arguments with shim wrapped setup file invocation.
:param setup_py_path: The path to setup.py to be wrapped.
:param global_options: Additional global options.
:param no_user_config: If True, disables personal user configuration.
:param unbuffered_output: If True, adds the unbuffered switch to the
argument list.
z-uz-cz
--no-user-cfg)sys
executable_SETUPTOOLS_SHIMformat)r r r r args r /builddir/build/BUILDROOT/alt-python38-pip-22.2.1-2.el8.x86_64/opt/alt/python38/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.pymake_setuptools_shim_args1 s
r )r r
build_optionsdestination_dirr c C s( t | |dd}|dd|g7 }||7 }|S )NTr r bdist_wheelz-dr )r r r r r r r r make_setuptools_bdist_wheel_argsK s
r )r r r c C s t | |dd}|ddg7 }|S )NTr cleanz--allr )r r r r r r make_setuptools_clean_args] s r )r r install_optionsr prefixhome
use_user_siter c C sf |r|rt t| ||d}|ddg7 }||7 }|r>|d|g7 }|d k rR|d|g7 }|rb|ddg7 }|S )N)r r developz --no-deps--prefixz
--install-dir--user --prefix=AssertionErrorr )r r r r r r r r r r r make_setuptools_develop_argsh s r$ )r egg_info_dirr r c C s* t | |d}|dg7 }|r&|d|g7 }|S )N)r egg_infoz
--egg-baser )r r% r r r r r make_setuptools_egg_info_args s
r' )r r r record_filenamerootr
header_dirr r r pycompiler c C s |r|rt |r|rt t| || dd}|dd|g7 }|dg7 }|d k rT|d|g7 }|d k rh|d|g7 }|d k r||d|g7 }|r|d d
g7 }|
r|dg7 }n
|dg7 }|r|d
|g7 }||7 }|S )NT)r r r installz--recordz#--single-version-externally-managedz--rootr z--homer r! z --compilez--no-compilez--install-headersr" )r r r r( r) r r* r r r r+ r r r r make_setuptools_install_args s2
r- )NFF)r
textwraptypingr r r dedentrstripr strboolr r r r$ r' r- r r r r sh + !