a �DOg���@s�dZddlZddlZddlZddlmZz ddlZWneyJdZYn0ddlTddl m Z m Z ddl m Z mZmZddlmZddlmZe�d �Zd d �ZGd d �d �ZGdd�d�Zdd�ZdS)z}distutils.dist Provides the Distribution class, which represents the module distribution being built/installed/distributed. �N)�message_from_file)�*)� FancyGetopt�translate_longopt)� check_environ� strtobool� rfc822_escape��log)�DEBUGz^[a-zA-Z]([a-zA-Z0-9_]*)$cCsLt|t�r n�Z#d?d@�Z$dAdB�Z%dCdD�Z&dEdF�Z'dGdH�Z(d S)O� Distributiona�The core of the Distutils. Most of the work hiding behind 'setup' is really done within a Distribution instance, which farms the work out to the Distutils commands specified on the command line. Setup scripts will almost never instantiate Distribution directly, unless the 'setup()' function is totally inadequate to their needs. However, it is conceivable that a setup script might wish to subclass Distribution for some specialized purpose, and then pass the subclass to 'setup()' as the 'distclass' keyword argument. If so, it is necessary to respect the expectations that 'setup' has of Distribution. See the code for 'setup()', in core.py, for details. ))�verbose�vzrun verbosely (default)�)�quiet�qz!run quietly (turns verbosity off))zdry-run�nzdon't actually do anything)�help�hzshow detailed help message)z no-user-cfgNz-ignore pydistutils.cfg in your home directoryz�Common commands: (see '--help-commands' for more) setup.py build will build the package underneath 'build/' setup.py install will install the package ))z help-commandsNzlist all available commands)�nameNzprint package name)�version�Vzprint package version)�fullnameNzprint -)�authorNzprint the author's name)� author-emailNz print the author's email address)� maintainerNzprint the maintainer's name)zmaintainer-emailNz$print the maintainer's email address)�contactNz7print the maintainer's name if known, else the author's)z contact-emailNz@print the maintainer's email address if known, else the author's)�urlNzprint the URL for this package)�licenseNz print the license of the package)�licenceNzalias for --license)� descriptionNzprint the package description)zlong-descriptionNz"print the long package description)� platformsNzprint the list of platforms)� classifiersNzprint the list of classifiers)�keywordsNzprint the list of keywords)�providesNz+print the list of packages/modules provided)�requiresNz+print the list of packages/modules required)� obsoletesNz0print the list of packages/modules made obsoletecCsg|]}t|d��qS)r�r)�.0�xrrr� ��zDistribution.rrNcCs\d|_d|_d|_|jD]}t||d�qt�|_|jjD] }d|}t||t|j|��q:i|_ d|_ d|_ d|_ i|_ g|_d|_i|_d|_d|_d|_d|_d|_d|_d|_d|_d|_d|_d|_i|_i|_|�r|�d�}|du�r8|d=|��D]4\}}|� |�}|��D]\} } d| f|| <�q�qd|v�r~|d|d <|d=d } t!du�rnt!�"| �nt#j$�%| d �|��D]�\} } t&|jd | ��r�t|jd | �| �nNt&|j| ��r�t|j| | �n0t&|| ��r�t|| | �nd t'| �} t!�"| ��q�d|_(|j du�rP|j D].} | �)d��s6�qP| dk�r d|_(�qP�q |�*�dS)a0Construct a new Distribution instance: initialize all the attributes of a Distribution, and then use 'attrs' (a dictionary mapping attribute names to values) to assign some of those attributes their "real" values. (Any attributes not mentioned in 'attrs' will be assigned to some null value: 0, None, an empty list or dictionary, etc.) Most importantly, initialize the 'command_obj' attribute to the empty dictionary; this will be filled in with real command objects by 'parse_command_line()'. rr�get_N��optionsz setup scriptr-r,z:'licence' distribution option is deprecated; use 'license'� Zset_zUnknown distribution option: %sT�-z --no-user-cfgF)+r�dry_runr!�display_option_names�setattr�DistributionMetadata�metadata�_METHOD_BASENAMES�getattr�cmdclass�command_packages� script_name� script_args�command_optionsZ dist_files�packagesZ package_dataZ package_dir� py_modules� libraries�headers� ext_modulesZ ext_packageZ include_dirsZ extra_path�scripts� data_files�password� command_obj�have_run�get�items�get_option_dict�warnings�warn�sys�stderr�write�hasattr�repr� want_user_cfg� startswith�finalize_options)�self�attrs�attr�basenameZ method_namer<�commandZ cmd_options�opt_dict�opt�valr�key�argrrr�__init__�s~                   zDistribution.__init__cCs&|j�|�}|dur"i}|j|<|S)z�Get the option dictionary for a given command. If that command's option dictionary hasn't been created yet, then create it and return the new dictionary; otherwise, return the existing option dictionary. N)rJrU)rbrf�dictrrrrW&s zDistribution.get_option_dictr;c Cs�ddlm}|dur"t|j���}|dur@|�||�|d}|sV|�|d�dS|D]h}|j�|�}|dur�|�|d|�qZ|�|d|�||�}|�d�D]}|�|d|�q�qZdS)Nr)�pformatz zno commands known yetzno option dict for '%s' commandzoption dict for '%s' command:r=)Zpprintrn�sortedrJ�keys�announcerU�split) rb�header�commands�indentrnZcmd_namerg�out�linerrr�dump_option_dicts1s*  ��zDistribution.dump_option_dictscCs�g}t�tj�tjdj�}tj�|d�}tj�|�rB|� |�tj dkrRd}nd}|j r�tj�tj� d�|�}tj�|�r�|� |�d}tj�|�r�|� |�t r�|�dd �|��|S) a�Find as many configuration files as should be processed for this platform, and return a list of filenames in the order in which they should be parsed. The filenames returned are guaranteed to exist (modulo nasty race conditions). There are three possible config files: distutils.cfg in the Distutils installation directory (ie. where the top-level Distutils __inst__.py file lives), a file in the user's home directory named .pydistutils.cfg on Unix and pydistutils.cfg on Windows/Mac; and setup.cfg in the current directory. The file in the user's home directory can be disabled with the --no-user-cfg option. � distutilsz distutils.cfg�posixz.pydistutils.cfgzpydistutils.cfg�~z setup.cfgzusing config files: %sz, )r�os�path�dirnamerZ�modules�__file__�join�isfile�appendr#r_� expanduserr rq)rb�filesZsys_dirZsys_fileZ user_filenameZ user_fileZ local_filerrr�find_config_filesMs&       zDistribution.find_config_filesc Cs�ddlm}tjtjkr"gd�}ng}t|�}|dur>|��}trL|�d�|�}|D]�}trl|�d|�|� |�|� �D]V}|� |�}|� |�}|D]8} | dkr�| |vr�|� || �} | �dd�} || f|| <q�q~|��qVd |jv�r�|jd ��D]�\} \} } |j� | �} zF| �r.t|| t| � �n(| d v�rJt|| t| ��n t|| | �Wq�t�y�} zt| ��WYd} ~ q�d} ~ 00q�dS) Nr)� ConfigParser) z install-basezinstall-platbasez install-libzinstall-platlibzinstall-purelibzinstall-headerszinstall-scriptsz install-data�prefixz exec-prefix�home�user�rootz"Distribution.parse_config_files():z reading %srr>�_�global)rr?)� configparserr�rZr�� base_prefix� frozensetr�r rq�readZsectionsr<rWrU�replacerlrJrV� negative_optrAr� ValueError�DistutilsOptionError)rb� filenamesr�Zignore_options�parser�filename�sectionr<rgrhri�src�aliasrrrr�parse_config_files}sD              zDistribution.parse_config_filescCs�|��}g|_t||j�}|�|j�|�ddi�|j|j|d�}|� �}t � |j �|� |�rhdS|r�|�||�}|durhdSqh|jr�|j|t|j�dk|jd�dS|js�td��dS) a�Parse the setup script's command line, taken from the 'script_args' instance attribute (which defaults to 'sys.argv[1:]' -- see 'setup()' in core.py). This list is first processed for "global options" -- options that set attributes of the Distribution instance. Then, it is alternately scanned for Distutils commands and options for that command. Each new command terminates the options for the previous command. The allowed options for a command are determined by the 'user_options' attribute of the command class -- thus, we have to be able to load command classes in order to parse the command line. Any error in that 'options' attribute raises DistutilsGetoptError; any error on the command-line raises DistutilsArgError. If no Distutils commands were found on the command line, raises DistutilsArgError. Return true if command-line was successfully parsed and we should carry on with executing commands; false if no errors but we shouldn't execute commands (currently, this only happens if user asks for help). r-r,)�args�objectNr��display_optionsrtzno commands suppliedT)�_get_toplevel_optionsrtrr��set_negative_aliasesr�Z set_aliases�getoptrIZget_option_orderr Z set_verbosityr�handle_display_options�_parse_command_optsr!� _show_help�len�DistutilsArgError)rbZtoplevel_optionsr�r�� option_orderrrr�parse_command_line�s.      �zDistribution.parse_command_linecCs |jdgS)z�Return the non-display options recognized at the top level. This includes options that are recognized *only* at the top level as well as options recognized for commands. )zcommand-packages=Nz0list of packages that provide distutils commands)�global_options�rbrrrr��s�z"Distribution._get_toplevel_optionsc Csddlm}|d}t�|�s*td|��|j�|�z|�|�}Wn,typ}zt |��WYd}~n d}~00t ||�s�t d|��t |d�r�t |jt�s�d}t ||��|j}t |d�r�|��}|�|j�t |d �r�t |jt�r�t|j�}ng}|�|j|j|�|�|�|�|d d��\}} t | d ��rX| j�rX|j|d|gd �dSt |d ��r�t |jt��r�d} |jD]F\} } } }t | |�| ���r|d } t|��r�|�nt d || f���q|| �r�dS|�|�}t| ���D]\}}d|f||<�q�|S)a�Parse the command-line options for a single command. 'parser' must be a FancyGetopt instance; 'args' must be the list of arguments, starting with the current command (whose options we are about to parse). Returns a new version of 'args' with the next command at the front of the list; will be the empty list if there are no more commands on the command line. Returns None if the user asked for help on this command. r��Commandzinvalid command name '%s'Nz&command class %s must subclass Command� user_optionszIcommand class %s must provide 'user_options' attribute (a list of tuples)r�� help_optionsrr!r�zYinvalid help function %r for help option '%s': must be a callable object (function, etc.)z command line) � distutils.cmdr�� command_re�match� SystemExitrtr��get_command_class�DistutilsModuleErrorr�� issubclassZDistutilsClassErrorr]r r�rr��copy�updater��fix_help_options�set_option_tabler�r�r�r!r�Z get_attr_name�callablerW�varsrV)rbr�r�r�rfZ cmd_classrr�r�ZoptsZhelp_option_foundZ help_optionZshortZdesc�funcrgr#rrrrr�sr     �  �     � ��   � �� z Distribution._parse_command_optscCsPdD]F}t|j|�}|durqt|t�rdd�|�d�D�}t|j||�qdS)z�Set final values for all the options on the Distribution instance, analogous to the .finalize_options() method of Command objects. �r1r/NcSsg|] }|���qSr��strip)r6Zelmrrrr8jr9z1Distribution.finalize_options..�,)rErCr rrrrA)rbrdrrrrra`s  zDistribution.finalize_optionsrc Csddlm}ddlm}|rR|r*|��}n|j}|�|�|�|jd�t d�|rt|�|j �|�d�t d�|j D]z}t |t �r�t||�r�|} n |�|�} t| d�r�t | jt�r�|�| jt| j��n |�| j�|�d| j�t d�qzt ||j��d S) abShow help for the setup script command-line in the form of several lists of command-line options. 'parser' should be a FancyGetopt instance; do not expect it to be returned in the same state, as its option table will be reset to make it generate the correct help text. If 'global_options' is true, lists the global options: --verbose, --dry-run, etc. If 'display_options' is true, lists the "display-only" options: --name, --version, etc. Finally, lists per-command help for every command name or command class in 'commands'. r�� gen_usager�z Global options:r;zKInformation display options (just display information, ignore any commands)r�zOptions for '%s' command:N)�distutils.corer�r�r�r�r�r�� print_help� common_usage�printr�rtr rr�r�r]r�rr�r�rrH) rbr�r�r�rtr�r�r<rf�klassrrrr�ms:     �    ��  zDistribution._show_helpc Cs�ddlm}|jr4|��td�t||j��dSd}i}|jD]}d||d<qB|D]l\}}|rX|�|�rXt|�}t |j d|��}|dvr�td� |��n |dvr�td � |��nt|�d}qX|S) z�If there were any non-global "display-only" options (--help-commands or the metadata display options) on the command line, display the requested info and return true; else return false. rr�r;rr:r�r�)r0r2r3r4r=) r�r�Z help_commands�print_commandsr�rHr�rUrrErCr�) rbr�r�Zany_display_optionsZis_display_option�optionrhrirrrrr��s*   z#Distribution.handle_display_optionsc Csht|d�|D]R}|j�|�}|s.|�|�}z |j}WntyNd}Yn0td|||f�qdS)zZPrint a subset of the list of all commands -- used by 'print_commands()'. �:�(no description available)z %-*s %sN)r�rFrUr�r.�AttributeError)rbrtrs� max_length�cmdr�r.rrr�print_command_list�s      zDistribution.print_command_listcCs�ddl}|jj}i}|D] }d||<qg}|j��D]}|�|�s4|�|�q4d}||D]}t|�|krZt|�}qZ|�|d|�|r�t �|�|d|�dS)anPrint out a help message listing all available commands with a description of each. The list is divided into "standard commands" (listed in distutils.command.__all__) and "extra commands" (mentioned in self.cmdclass, but not a standard command). The descriptions come from the command class attribute 'description'. rNrzStandard commandszExtra commands) �distutils.commandrf�__all__rFrprUr�r�r�r�)rbry� std_commands�is_stdr��extra_commandsr�rrrr��s.      ��zDistribution.print_commandsc Cs�ddl}|jj}i}|D] }d||<qg}|j��D]}|�|�s4|�|�q4g}||D]N}|j�|�}|sx|�|�}z |j}Wnt y�d}Yn0|�||f�qZ|S)a>Get a list of (command, description) tuples. The list is divided into "standard commands" (listed in distutils.command.__all__) and "extra commands" (mentioned in self.cmdclass, but not a standard command). The descriptions come from the command class attribute 'description'. rNrr�) r�rfr�rFrprUr�r�r.r�) rbryr�r�r�r��rvr�r.rrr�get_command_list�s(          zDistribution.get_command_listcCsN|j}t|t�sJ|durd}dd�|�d�D�}d|vrD|�dd�||_|S)z9Return a list of packages from which commands are loaded.Nr;cSsg|]}|dkr|���qS)r;r�)r6�pkgrrrr8!r9z5Distribution.get_command_packages..r�zdistutils.commandr)rGr rrr�insert)rbZpkgsrrr�get_command_packagess  z!Distribution.get_command_packagesc Cs�|j�|�}|r|S|��D]�}d||f}|}zt|�tj|}Wnty\YqYn0zt||�}Wn$ty�t d|||f��Yn0||j|<|St d|��dS)aoReturn the class that implements the Distutils command named by 'command'. First we check the 'cmdclass' dictionary; if the command is mentioned there, we fetch the class object from the dictionary and return it. Otherwise we load the command module ("distutils.command." + command) and fetch the command class from the module. The loaded class is also stored in 'cmdclass' to speed future calls to 'get_command_class()'. Raises DistutilsModuleError if the expected module could not be found, or if that module does not define the expected class. z%s.%sz3invalid command '%s' (no class '%s' in module '%s')zinvalid command '%s'N) rFrUr�� __import__rZr� ImportErrorrEr�r�)rbrfr�Zpkgname� module_nameZ klass_name�modulerrrr�'s,      ��  zDistribution.get_command_classcCsl|j�|�}|sh|rhtr&|�d|�|�|�}||�}|j|<d|j|<|j�|�}|rh|�||�|S)aReturn the command object for 'command'. Normally this object is cached on a previous call to 'get_command_obj()'; if no command object for 'command' is in the cache, then we either create and return it (if 'create' is true) or return None. z.z1error in %s: command '%s' has no such option '%s')�get_command_namerWr rqrVZboolean_optionsr�r�r rrArr]r�r�) rbrSZ option_dict� command_namer��sourcerZ bool_optsZneg_optZ is_stringrrrrr�hsF   ��          ��z!Distribution._set_command_optionsrcCs|ddlm}t||�s&|}|�|�}n|��}|js8|S|��d|_d|j|<|�|�|rx|� �D]}|� ||�qf|S)a�Reinitializes a command to the state it was in when first returned by 'get_command_obj()': ie., initialized but not yet finalized. This provides the opportunity to sneak option values in programmatically, overriding or supplementing user-supplied values from the config files and command line. You'll have to re-finalize the command object (by calling 'finalize_options()' or 'ensure_finalized()') before using it for real. 'command' should be a command name (string) or command object. If 'reinit_subcommands' is true, also reinitializes the command's sub-commands, as declared by the 'sub_commands' class attribute (if it has one). See the "install" command for an example. Only reinitializes the sub-commands that actually matter, ie. those whose test predicates return true. Returns the reinitialized command object. rr�) r�r�r r�r�Z finalizedZinitialize_optionsrTr�Zget_sub_commands�reinitialize_command)rbrfZreinit_subcommandsr�r��subrrrr��s      z!Distribution.reinitialize_commandcCst�||�dS�Nr )rbr�levelrrrrq�szDistribution.announcecCs|jD]}|�|�qdS)z�Run each command that was seen on the setup script command line. Uses the list of commands found and cache of command objects created by 'get_command_obj()'. N)rt� run_command)rbr�rrr� run_commands�s zDistribution.run_commandscCsD|j�|�rdSt�d|�|�|�}|��|��d|j|<dS)a�Do whatever it takes to run a command (including nothing at all, if the command has already been run). Specifically: if we have already created and run the command named by 'command', return silently without doing anything. If the command named by 'command' doesn't even have a command object yet, create one. Then invoke 'run()' on that command object (or an existing one). Nz running %sr)rTrUr �infor�Zensure_finalized�run)rbrfr�rrrr��s   zDistribution.run_commandcCst|jp|jpg�dkS�Nr)r�rKrLr�rrr�has_pure_modules�szDistribution.has_pure_modulescCs|jot|j�dkSr�)rOr�r�rrr�has_ext_modules�szDistribution.has_ext_modulescCs|jot|j�dkSr�)rMr�r�rrr�has_c_libraries�szDistribution.has_c_librariescCs|��p|��Sr�)r�r�r�rrr� has_modules�szDistribution.has_modulescCs|jot|j�dkSr�)rNr�r�rrr� has_headers�szDistribution.has_headerscCs|jot|j�dkSr�)rPr�r�rrr� has_scripts�szDistribution.has_scriptscCs|jot|j�dkSr�)rQr�r�rrr�has_data_files�szDistribution.has_data_filescCs|��o|�� o|�� Sr�)r�r�r�r�rrr�is_pure�s ��zDistribution.is_pure)N)NNr;)N)r)N)r))r� __module__� __qualname__�__doc__r�r�r�r@r�rlrWrxr�r�r�r�r�rar�r�r�r�r�r�r�r�r�r�r �INFOrqr�r�r�r�r�r�r�r�r�r�rrrrr,sN ,  0 :C [ � 2(!" &  , ) rc@seZdZdZdZdBdd�Zdd�Zdd �Zd d �Zd d �Z dd�Z dd�Z dd�Z dd�Z dd�Zdd�Zdd�Zdd�Zdd�Zd d!�Zd"d#�ZeZd$d%�Zd&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�Zd0d1�Zd2d3�Zd4d5�Zd6d7�Zd8d9�Z d:d;�Z!dd?�Z#d@dA�Z$dS)CrBz]Dummy class to hold the distribution meta-data: name, version, author, and so forth. )r#r$r'� author_emailr)�maintainer_emailr+r,r.�long_descriptionr1r/r&r*Z contact_emailr0� download_urlr2r3r4NcCs�|dur|�t|��nfd|_d|_d|_d|_d|_d|_d|_d|_ d|_ d|_ d|_ d|_ d|_d|_d|_d|_d|_dSr�)� read_pkg_file�openr#r$r'r�r)r�r+r,r.r�r1r/r0r�r2r3r4)rbr}rrrrl s&zDistributionMetadata.__init__cst|���fdd�}�fdd�}�d}|d�|_|d�|_|d�|_|d �|_d |_|d �|_d |_|d �|_|d �|_ d�vr�|d�|_ nd |_ |d�|_ |d�|_d�vr�|d�� d�|_ |d�|_|d�|_|dkr�|d�|_|d�|_|d�|_nd |_d |_d |_d S)z-Reads the metadata values from a file object.cs�|}|dkrdS|S�NZUNKNOWNr)r#r�rrr� _read_field(sz7DistributionMetadata.read_pkg_file.._read_fieldcs��|d�}|gkrdS|Sr�)Zget_all)r#�valuesrrr� _read_list.s z6DistributionMetadata.read_pkg_file.._read_listzmetadata-versionr#r$Zsummaryr'Nr(z home-pager,z download-urlr.r1r��platformZ classifier�1.1r3r2r4)rr#r$r.r'r)r�r�r+r,r�r�rrr1r/r0r3r2r4)rb�filerrZmetadata_versionrrrr$s:                 z"DistributionMetadata.read_pkg_filecCsFttj�|d�ddd��}|�|�Wd�n1s80YdS)z7Write the PKG-INFO file into the release tree. zPKG-INFO�wzUTF-8)�encodingN)rr|r}r��write_pkg_file)rb�base_dirZpkg_inforrr�write_pkg_infoXs �z#DistributionMetadata.write_pkg_infocCsbd}|js"|js"|js"|js"|jr&d}|�d|�|�d|���|�d|���|�d|���|�d|� ��|�d|� ��|�d |� ��|�d |� ��|jr�|�d |j�t |���}|�d |�d �|���}|�r|�d|�|�|d|���|�|d|���|�|d|���|�|d|���|�|d|���dS)z9Write the PKG-INFO format data to a file object. z1.0rzMetadata-Version: %s z Name: %s z Version: %s z Summary: %s zHome-page: %s z Author: %s zAuthor-email: %s z License: %s zDownload-URL: %s zDescription: %s r�z Keywords: %s ZPlatformZ ClassifierZRequiresZProvidesZ ObsoletesN)r2r3r4r0r�r\�get_name� get_version�get_description�get_url� get_contact�get_contact_email� get_licenser�get_long_descriptionr�� get_keywords� _write_list� get_platforms�get_classifiers� get_requires� get_provides� get_obsoletes)rbr r$Z long_descr1rrrr _s6�� z#DistributionMetadata.write_pkg_filecCs |D]}|�d||f�qdS)Nz%s: %s )r\)rbr r#rrrrrr�sz DistributionMetadata._write_listcCs |jpdSr)r#r�rrrr�szDistributionMetadata.get_namecCs |jpdS)Nz0.0.0)r$r�rrrr�sz DistributionMetadata.get_versioncCsd|��|��fS)Nz%s-%s)rrr�rrr� get_fullname�sz!DistributionMetadata.get_fullnamecCs |jpdSr)r'r�rrr� get_author�szDistributionMetadata.get_authorcCs |jpdSr)r�r�rrr�get_author_email�sz%DistributionMetadata.get_author_emailcCs |jpdSr)r)r�rrr�get_maintainer�sz#DistributionMetadata.get_maintainercCs |jpdSr)r�r�rrr�get_maintainer_email�sz)DistributionMetadata.get_maintainer_emailcCs|jp|jpdSr)r)r'r�rrrr�sz DistributionMetadata.get_contactcCs|jp|jpdSr)r�r�r�rrrr�sz&DistributionMetadata.get_contact_emailcCs |jpdSr)r+r�rrrr�szDistributionMetadata.get_urlcCs |jpdSr)r,r�rrrr�sz DistributionMetadata.get_licensecCs |jpdSr)r.r�rrrr�sz$DistributionMetadata.get_descriptioncCs |jpdSr)r�r�rrrr�sz)DistributionMetadata.get_long_descriptioncCs |jpgSr�)r1r�rrrr�sz!DistributionMetadata.get_keywordscCst|d�|_dS)Nr1)rr1�rbrrrr� set_keywords�sz!DistributionMetadata.set_keywordscCs |jp dgSr)r/r�rrrr�sz"DistributionMetadata.get_platformscCst|d�|_dS)Nr/)rr/r#rrr� set_platforms�sz"DistributionMetadata.set_platformscCs |jpgSr�)r0r�rrrr�sz$DistributionMetadata.get_classifierscCst|d�|_dS)Nr0)rr0r#rrr�set_classifiers�sz$DistributionMetadata.set_classifierscCs |jpdSr)r�r�rrr�get_download_url�sz%DistributionMetadata.get_download_urlcCs |jpgSr�)r3r�rrrr�sz!DistributionMetadata.get_requirescCs,ddl}|D]}|j�|�q t|�|_dSr�)�distutils.versionpredicate�versionpredicate�VersionPredicaterr3�rbrryrrrr� set_requires�sz!DistributionMetadata.set_requirescCs |jpgSr�)r2r�rrrr�sz!DistributionMetadata.get_providescCs6dd�|D�}|D]}ddl}|j�|�q||_dS)NcSsg|] }|���qSrr�)r6rrrrr8�r9z5DistributionMetadata.set_provides..r)r(r)Zsplit_provisionr2)rbrrryrrr� set_provides�s z!DistributionMetadata.set_providescCs |jpgSr�)r4r�rrrr�sz"DistributionMetadata.get_obsoletescCs,ddl}|D]}|j�|�q t|�|_dSr�)r(r)r*rr4r+rrr� set_obsoletes�sz"DistributionMetadata.set_obsoletes)N)%rr�r�r�rDrlrrr rrrrrr r!r"rrrrZ get_licencerrrr$rr%rr&r'rr,rr-rr.rrrrrB�sD 4"rBcCs$g}|D]}|�|dd��q|S)zConvert a 4-tuple 'help_options' list as found in various command classes to the 3-tuple form required by FancyGetopt. r�)r�)r<Z new_optionsZ help_tuplerrrr��sr�)r�rZr|�reZemailrrXr�Zdistutils.errorsZdistutils.fancy_getoptrrZdistutils.utilrrrryr Zdistutils.debugr �compiler�rrrBr�rrrr�s4       Zc