[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.133.110.37: ~ $
U

+�a�@sTdZddlmZddlZddlZddlZddlZddlZ	ddl
mZddlm
Z
ddlmZddlZddlmZdd	lmZdd
lmZddlmZdd
ddddddgZejjZdZdZdgZGdd�d�Z Gdd�de �Z!e j"Z#e!j"Z$dd�Z%dd�Z&e	j'j&je&_e�(e	j'j)�Z*Gdd�de*�Z)dd�Z+ej,fd d!�Z-Gd"d#�d#e.�Z/e�0�dS)$z@Extensions to the 'distutils' for large or complex distributions���fnmatchcaseN)�DistutilsOptionError)�convert_path�)�SetuptoolsDeprecationWarning)�	Extension)�Distribution)�Require)�monkey�setupr	�Commandrr
r�
find_packages�find_namespace_packagesTz
lib2to3.fixesc@sBeZdZdZeddd��Zedd��Zed	d
��Zedd��Z	d
S)�
PackageFinderzI
    Generate a list of all Python packages found within a directory
    �.���*cCs&t|�t|�|jd|��|j|���S)a	Return a list all Python packages found within directory 'where'

        'where' is the root directory which will be searched for packages.  It
        should be supplied as a "cross-platform" (i.e. URL-style) path; it will
        be converted to the appropriate local path syntax.

        'exclude' is a sequence of package names to exclude; '*' can be used
        as a wildcard in the names, such that 'foo.*' will exclude all
        subpackages of 'foo' (but not 'foo' itself).

        'include' is a sequence of package names to include.  If it's
        specified, only the named packages will be included.  If it's not
        specified, all found packages will be included.  'include' can contain
        shell style wildcard patterns just like 'exclude'.
        �ez_setup�*__pycache__)rr)�list�_find_packages_iterr�
_build_filter)�cls�where�exclude�includerr�;/tmp/pip-install-1bd_1mtk/setuptools/setuptools/__init__.py�find-s
�zPackageFinder.findccs�tj|dd�D]�\}}}|dd�}g|dd�<|D]d}tj�||�}	tj�|	|�}
|
�tjjd�}d|ks4|�|	�sxq4||�r�||�s�|V|�|�q4qdS)zy
        All the packages found in 'where' that pass the 'include' filter, but
        not the 'exclude' filter.
        T��followlinksNr)	�os�walk�path�join�relpath�replace�sep�_looks_like_package�append)rrrr�root�dirs�filesZall_dirs�dir�	full_path�rel_path�packagerrrrDsz!PackageFinder._find_packages_itercCstj�tj�|d��S)z%Does a directory look like a package?z__init__.py)r"r$�isfiler%�r$rrrr)`sz!PackageFinder._looks_like_packagecs�fdd�S)z�
        Given a list of patterns, return a callable that will be true only if
        the input matches at least one of the patterns.
        cst�fdd��D��S)Nc3s|]}t�|d�VqdS))�patNr)�.0r4��namerr�	<genexpr>ksz@PackageFinder._build_filter.<locals>.<lambda>.<locals>.<genexpr>)�anyr6��patternsr6r�<lambda>k�z-PackageFinder._build_filter.<locals>.<lambda>rr:rr:rreszPackageFinder._build_filterN)rrr)
�__name__�
__module__�__qualname__�__doc__�classmethodrr�staticmethodr)rrrrrr(s

rc@seZdZedd��ZdS)�PEP420PackageFindercCsdS)NTrr3rrrr)osz'PEP420PackageFinder._looks_like_packageN)r>r?r@rCr)rrrrrDnsrDcCs>Gdd�dtjj�}||�}|jdd�|jr:|�|j�dS)Nc@s eZdZdZdd�Zdd�ZdS)z4_install_setup_requires.<locals>.MinimalDistributionzl
        A minimal version of a distribution for supporting the
        fetch_build_eggs interface.
        cs6d}�fdd�t|�t��@D�}tjj�||�dS)N)Zdependency_links�setup_requirescsi|]}|�|�qSrr)r5�k��attrsrr�
<dictcomp>�s�zQ_install_setup_requires.<locals>.MinimalDistribution.__init__.<locals>.<dictcomp>)�set�	distutils�corer	�__init__)�selfrHZ_incl�filteredrrGrrM�s

�z=_install_setup_requires.<locals>.MinimalDistribution.__init__cSsdS)zl
            Disable finalize_options to avoid building the working set.
            Ref #2158.
            Nr)rNrrr�finalize_options�szE_install_setup_requires.<locals>.MinimalDistribution.finalize_optionsN)r>r?r@rArMrPrrrr�MinimalDistribution{srQT)Zignore_option_errors)rKrLr	�parse_config_filesrEZfetch_build_eggs)rHrQ�distrrr�_install_setup_requiresxs
rTcKst|�tjjf|�S�N)rTrKrLrrGrrrr�sc@s:eZdZejZdZdd�Zddd�Zdd�Zd
d
d�Z	dS)r
FcKst�||�t|��|�dS)zj
        Construct the command for dist, updating
        vars(self) with any keyword parameters.
        N)�_CommandrM�vars�update)rNrS�kwrrrrM�szCommand.__init__NcCsBt||�}|dkr"t|||�|St|t�s>td|||f��|S)Nz'%s' must be a %s (got `%s`))�getattr�setattr�
isinstance�strr)rN�option�what�default�valrrr�_ensure_stringlike�s

�zCommand._ensure_stringlikecCspt||�}|dkrdSt|t�r6t||t�d|��n6t|t�rTtdd�|D��}nd}|sltd||f��dS)z�Ensure that 'option' is a list of strings.  If 'option' is
        currently a string, we split it either on /,\s*/ or /\s+/, so
        "foo bar baz", "foo,bar,baz", and "foo,   bar baz" all become
        ["foo", "bar", "baz"].
        Nz,\s*|\s+css|]}t|t�VqdSrU)r\r])r5�vrrrr8�sz-Command.ensure_string_list.<locals>.<genexpr>Fz''%s' must be a list of strings (got %r))	rZr\r]r[�re�splitr�allr)rNr^ra�okrrr�ensure_string_list�s


��zCommand.ensure_string_listrcKs t�|||�}t|��|�|SrU)rV�reinitialize_commandrWrX)rN�command�reinit_subcommandsrY�cmdrrrri�szCommand.reinitialize_command)N)r)
r>r?r@rVrAZcommand_consumes_argumentsrMrbrhrirrrrr
�s

cCs&dd�tj|dd�D�}ttjj|�S)z%
    Find all files under 'path'
    css,|]$\}}}|D]}tj�||�VqqdSrU)r"r$r%)r5�baser,r-�filerrrr8�s�z#_find_all_simple.<locals>.<genexpr>Tr )r"r#�filterr$r2)r$�resultsrrr�_find_all_simple�s�rqcCs6t|�}|tjkr.tjtjj|d�}t||�}t|�S)z�
    Find all files under 'dir' and return the list of full filenames.
    Unless dir is '.', return full filenames with dir prepended.
    )�start)	rqr"�curdir�	functools�partialr$r&�mapr)r.r-Zmake_relrrr�findall�s


rwc@seZdZdZdS)�sicz;Treat this string as-is (https://en.wikipedia.org/wiki/Sic)N)r>r?r@rArrrrrx�srx)1rA�fnmatchrrtr"rdZ_distutils_hack.overrideZ_distutils_hack�distutils.corerK�distutils.errorsr�distutils.utilrZ_deprecation_warningrZsetuptools.version�
setuptoolsZsetuptools.extensionrZsetuptools.distr	Zsetuptools.dependsr
�r�__all__�version�__version__Zbootstrap_install_fromZrun_2to3_on_doctestsZlib2to3_fixer_packagesrrDrrrrTrrLZ
get_unpatchedr
rVrqrsrwr]rxZ	patch_allrrrr�<module>sP�F2

Filemanager

Name Type Size Permission Actions
__init__.cpython-38.pyc File 8.42 KB 0644
_deprecation_warning.cpython-38.pyc File 520 B 0644
_imp.cpython-38.pyc File 2.01 KB 0644
archive_util.cpython-38.pyc File 5.59 KB 0644
build_meta.cpython-38.pyc File 8.74 KB 0644
config.cpython-38.pyc File 19.42 KB 0644
dep_util.cpython-38.pyc File 827 B 0644
depends.cpython-38.pyc File 5.08 KB 0644
dist.cpython-38.pyc File 35.36 KB 0644
errors.cpython-38.pyc File 820 B 0644
extension.cpython-38.pyc File 1.87 KB 0644
glob.cpython-38.pyc File 3.59 KB 0644
installer.cpython-38.pyc File 2.69 KB 0644
launch.cpython-38.pyc File 851 B 0644
lib2to3_ex.cpython-38.pyc File 2.6 KB 0644
monkey.cpython-38.pyc File 4.48 KB 0644
msvc.cpython-38.pyc File 41.73 KB 0644
namespaces.cpython-38.pyc File 3.47 KB 0644
package_index.cpython-38.pyc File 31.74 KB 0644
py34compat.cpython-38.pyc File 454 B 0644
sandbox.cpython-38.pyc File 15.05 KB 0644
unicode_utils.cpython-38.pyc File 1.06 KB 0644
version.cpython-38.pyc File 296 B 0644
wheel.cpython-38.pyc File 7.03 KB 0644
windows_support.cpython-38.pyc File 993 B 0644