+
    <j                         ^ RI t ^ RIt^ RIHtHtHt ]P                  ! R4      P                  4       tRR R llt	R R lt
R R	 ltR
 R ltR R ltR# )    N)ListOptionalSequencea  
    exec(compile('''
    # This is <pip-setuptools-caller> -- 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, traceback

    try:
        import setuptools
    except ImportError:
        print(
            "ERROR: Can not execute `setup.py` since setuptools failed to import in "
            "the build environment with exception:",
            file=sys.stderr,
        )
        traceback.print_exc()
        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 = "<auto-generated setuptools caller>"
        setup_py_code = "from setuptools import setup; setup()"

    exec(compile(setup_py_code, filename, "exec"))
    ''' % ({!r},), "<pip-setuptools-caller>", "exec"))
    c                    V ^8  d   QhR\         R\        \        \         ,          ,          R\        R\        R\        \         ,          /# )   setup_py_pathglobal_optionsno_user_configunbuffered_outputreturn)strr   r   boolr   )formats   "Y/opt/headortail/venv/lib/python3.14/site-packages/pip/_internal/utils/setuptools_build.py__annotate__r   2   sG      Xc]+  	
 
#Y    c                    \         P                  .pV'       d   VR.,          pVR\        P                  V 4      .,          pV'       d	   WA,          pV'       d   VR.,          pV# )aS  
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_SHIMr   )r   r	   r
   r   argss   &&&& r   make_setuptools_shim_argsr   2   sY     NNDT#**=9::D!!Kr   c                    V ^8  d   QhR\         R\        \         ,          R\        \         ,          R\         R\        \         ,          /# )r   r   r	   build_optionsdestination_dirr   r   r   r   )r   s   "r   r   r   L   sF      SM C= 	
 
#Yr   c                 H    \        WR R7      pVRRV.,          pWB,          pV# )Tr	   r   bdist_wheelz-dr   )r   r	   r   r   r   s   &&&& r    make_setuptools_bdist_wheel_argsr!   L   s3     %D 	]D/22DDKr   c                h    V ^8  d   QhR\         R\        \         ,          R\        \         ,          /# )r   r   r	   r   r   )r   s   "r   r   r   ^   s.      SM 
#Yr   c                 6    \        WR R7      pVRR.,          pV# )Tr   cleanz--allr    )r   r	   r   s   && r   make_setuptools_clean_argsr%   ^   s)     %D 	WgDKr   c                    V ^8  d   QhR\         R\        \         ,          R\        R\        \         ,          R\        \         ,          R\        R\        \         ,          /# )r   r   r	   r
   prefixhomeuse_user_siter   )r   r   r   r   r   )r   s   "r   r   r   i   s`       SM 	
 SM 3-  
#Yr   c                    V'       d   V'       d   Q h\        V VVR 7      pVRR.,          pV'       d   VRV.,          pVe   VRV.,          pV'       d   VRR.,          pV# ))r	   r
   developz	--no-depsz--prefixz--install-dirz--userz	--prefix=r    )r   r	   r
   r'   r(   r)   r   s   &$$$$$ r   make_setuptools_develop_argsr,   i   sq     &))$%%D 	Y$$DV$$$'';''Kr   c          	      t    V ^8  d   QhR\         R\        \         ,          R\        R\        \         ,          /# )r   r   egg_info_dirr
   r   )r   r   r   r   )r   s   "r   r   r      s8      3-  
#Y	r   c                 X    \        WR 7      pVR.,          pV'       d   VRV.,          pV# ))r
   egg_infoz
--egg-baser    )r   r.   r
   r   s   &&& r   make_setuptools_egg_info_argsr1      s1    
 %]RDZLD|,,Kr   )NFF)r   textwraptypingr   r   r   dedentrstripr   r   r!   r%   r,   r1    r   r   <module>r7      sN    
  + +
 ??%'N 	&(O T4$<r   