관리-도구
편집 파일: _normalization.cpython-311.pyc
� �܋f� � �^ � d Z ddlZddlmZ ej dej � � Z ej dej � � Z ej dej � � Z ej dej � � Z d e d e fd�Zde d e fd �Zde d e fd�Z de d e fd�Zde d e fd�Zde d e fd�Zde d e fd�Zde d e fd�Zde d e fd�ZdS )zZ Helpers for normalization as expected in wheel/sdist/module file names and core metadata � N� )� packagingz)^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$z [^A-Z0-9._-]+z [^A-Z0-9]+z,^v?(?P<safe>(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)�name�returnc �^ � t j dd| � � }|� � � sJ �|S )z�Make a string safe to be used as Python identifier. >>> safe_identifier("12abc") '_12abc' >>> safe_identifier("__editable__.myns.pkg-78.9.3_local") '__editable___myns_pkg_78_9_3_local' z \W|^(?=\d)�_)�re�sub�isidentifier)r �safes �P/opt/cloudlinux/venv/lib64/python3.11/site-packages/setuptools/_normalization.py�safe_identifierr s4 � � �6�-��d�+�+�D����������K� � componentc �8 � t � d| � � S )z�Escape a component used as a project name according to Core Metadata. >>> safe_name("hello world") 'hello-world' >>> safe_name("hello?world") 'hello-world' >>> safe_name("hello_world") 'hello_world' �-)�_UNSAFE_NAME_CHARSr )r s r � safe_namer s � � �!�!�#�y�1�1�1r �versionc �J � | � dd� � } t t j � |� � � � S # t j j $ rJ t � d|� � }t t j � |� � � � cY S w xY w)a Convert an arbitrary string into a valid version string. Can still raise an ``InvalidVersion`` exception. To avoid exceptions use ``best_effort_version``. >>> safe_version("1988 12 25") '1988.12.25' >>> safe_version("v0.2.1") '0.2.1' >>> safe_version("v0.2?beta") '0.2b0' >>> safe_version("v0.2 beta") '0.2b0' >>> safe_version("ubuntu lts") Traceback (most recent call last): ... setuptools.extern.packaging.version.InvalidVersion: Invalid version: 'ubuntu.lts' � �.r )�replace�strr r �Version�InvalidVersionr r )r �v�attempts r �safe_versionr * s� � �"