+
     h  c                  s    ^ RI Ht ^ RIt^ RIt^ RIHt ^ RIHt ^RIH	t	 ^ RI
t^ RIt^ RItR t]t]'       d   ^ RI
Ht M]	! ]P$                  P                   4      t ! R R	]4      t ! R
 R]4      tR# )i    )annotationsN)TYPE_CHECKING)StrPath)get_unpatchedc                 s`    Rp  \        V R.R7      P                   R#   \         d     R# i ; i)z(
Return True if Cython can be imported.
zCython.Distutils.build_ext	build_ext)ZfromlistFT)Z
__import__r   Z	Exception)Zcython_impls    9/usr/lib/python3.14/site-packages/setuptools/extension.py_have_cythonr      s9     /K;+7AA   s    --)	Extensionc                  sj   a  ] tR t^&t$ RtR]R&   R]R&   R]R&   R]R&   RR	/R
 V 3R llltR tRtV ;t	# )r   ar  
Describes a single extension module.

This means that all source files will be compiled into a single binary file
``<module path>.<suffix>`` (with ``<module path>`` derived from ``name`` and
``<suffix>`` defined by one of the values in
``importlib.machinery.EXTENSION_SUFFIXES``).

In the case ``.pyx`` files are passed as ``sources and`` ``Cython`` is **not**
installed in the build environment, ``setuptools`` may also try to look for the
equivalent ``.cpp`` or ``.c`` files.

:arg str name:
  the full name of the extension, including any packages -- ie.
  *not* a filename or pathname, but Python dotted name

:arg list[str|os.PathLike[str]] sources:
  list of source filenames, relative to the distribution root
  (where the setup script lives), in Unix form (slash-separated)
  for portability.  Source files may be C, C++, SWIG (.i),
  platform-specific resource files, or whatever else is recognized
  by the "build_ext" command as source for a Python extension.

:keyword list[str] include_dirs:
  list of directories to search for C/C++ header files (in Unix
  form for portability)

:keyword list[tuple[str, str|None]] define_macros:
  list of macros to define; each macro is defined using a 2-tuple:
  the first item corresponding to the name of the macro and the second
  item either a string with its value or None to
  define it without a particular value (equivalent of "#define
  FOO" in source or -DFOO on Unix C compiler command line)

:keyword list[str] undef_macros:
  list of macros to undefine explicitly

:keyword list[str] library_dirs:
  list of directories to search for C/C++ libraries at link time

:keyword list[str] libraries:
  list of library names (not filenames or paths) to link against

:keyword list[str] runtime_library_dirs:
  list of directories to search for C/C++ libraries at run time
  (for shared extensions, this is when the extension is loaded).
  Setting this will cause an exception during build on Windows
  platforms.

:keyword list[str] extra_objects:
  list of extra files to link with (eg. object files not implied
  by 'sources', static library that must be explicitly specified,
  binary resource files, etc.)

:keyword list[str] extra_compile_args:
  any extra platform- and compiler-specific information to use
  when compiling the source files in 'sources'.  For platforms and
  compilers where "command line" makes sense, this is typically a
  list of command-line arguments, but for other platforms it could
  be anything.

:keyword list[str] extra_link_args:
  any extra platform- and compiler-specific information to use
  when linking object files together to create the extension (or
  to create a new static Python interpreter).  Similar
  interpretation as for 'extra_compile_args'.

:keyword list[str] export_symbols:
  list of symbols to be exported from a shared extension.  Not
  used on all platforms, and not generally necessary for Python
  extensions, which typically export exactly one symbol: "init" +
  extension_name.

:keyword list[str] swig_opts:
  any extra options to pass to SWIG if a source file has the .i
  extension.

:keyword list[str] depends:
  list of files that the extension depends on

:keyword str language:
  extension language (i.e. "c", "c++", "objc"). Will be detected
  from the source extensions if not provided.

:keyword bool optional:
  specifies that a build failure in the extension should not abort the
  build process, but simply not install the failing extension.

:keyword bool py_limited_api:
  opt-in flag for the usage of :doc:`Python's limited API <python:c-api/stable>`.

:raises setuptools.errors.PlatformError: if ``runtime_library_dirs`` is
  specified on Windows. (since v63)
strZ
_full_nameboolZ_links_to_dynamicZ_needs_stubZ
_file_namepy_limited_apiFc               s(    V ^8  d   QhRRRRRRRR/# )	i   namer   sourceszlist[StrPath]r
   r	   ZreturnZNone )Zformats   "r   Z__annotate__ZExtension.__annotate__   s2     
 

 

 
 

    c               	s>   < W0n         \        SV `  ! VV.VO5/ VB  R # )N)r
   Zsuper__init__)selfr   r   r
   ZargsZkw	__class__s   &&&$*,r   r   ZExtension.__init__   s2     -	
 	
 		
r   c                s   \        4       '       d   R# V P                  ;'       g    RpVP                  4       R8X  d   RMRp\        P                  ! \
        P                  RV4      p\        \        W0P                  4      4      V n	        R# )z
Replace sources with .pyx extensions to sources with the target
language extension. This mechanism allows language authors to supply
pre-converted sources but to prefer the .pyx sources.
NZ zc++z.cppz.cz.pyx$)
r   ZlanguageZlower	functoolsZpartialresubZlistZmapr   )r   ZlangZ
target_extr   s   &   r   _convert_pyx_sources_to_langZ&Extension._convert_pyx_sources_to_lang   s`     >>}}""#zz|u4V$
<C\\23r   )r
   r   )
__name__
__module____qualname____firstlineno____doc__Z__annotations__r   r   __static_attributes__Z__classcell__)r   s   @r   r   r   &   s@    ]F OO

  %
 
$4 4r   r   c                  s    ] tR t^tRtRtR# )Libraryz=Just like a regular Extension, but built as a library insteadr   N)r   r   r   r   r   r   r   r   r   r   r      s    Gr   r   )Z
__future__r    r   r   Ztypingr   Zsetuptools._pathr   Zmonkeyr   Zdistutils.coreZ	distutilsZdistutils.errorsZdistutils.extensionr   Z
have_pyrexr   Z
_ExtensionZcorer   r   r   r   <module>r      sc    "  	   $ !   
 
6y~~778JG4
 G4THi Hr   