OpenQuizz
Une application de gestion des contenus pédagogiques
setuptools._distutils.command.install_egg_info Namespace Reference

Data Structures

class  install_egg_info
 

Functions

def safe_name (name)
 
def safe_version (version)
 
def to_filename (name)
 

Detailed Description

distutils.command.install_egg_info

Implements the Distutils 'install_egg_info' command, for installing
a package's PKG-INFO metadata.

Function Documentation

◆ safe_name()

def setuptools._distutils.command.install_egg_info.safe_name (   name)
Convert an arbitrary string to a standard distribution name

Any runs of non-alphanumeric/. characters are replaced with a single '-'.

◆ safe_version()

def setuptools._distutils.command.install_egg_info.safe_version (   version)
Convert an arbitrary string to a standard version string

Spaces become dots, and all other non-alphanumeric characters become
dashes, with runs of multiple dashes condensed to a single dash.

◆ to_filename()

def setuptools._distutils.command.install_egg_info.to_filename (   name)
Convert a project or version name to its filename-escaped form

Any '-' characters are currently replaced with '_'.