OpenQuizz
Une application de gestion des contenus pédagogiques
|
Data Structures | |
class | install_egg_info |
Functions | |
def | safe_name (name) |
def | safe_version (version) |
def | to_filename (name) |
distutils.command.install_egg_info Implements the Distutils 'install_egg_info' command, for installing a package's PKG-INFO metadata.
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 '-'.
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.
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 '_'.