class documentation

Undocumented

Method check_broken_egg_info Undocumented
Method delete_file Delete `filename` (if not a dry run) after announcing it
Method finalize_options Undocumented
Method find_sources Generate SOURCES.txt manifest file
Method initialize_options Undocumented
Method run Undocumented
Method save_version_info Materialize the value of date into the build tag. Install build keys in a deterministic order to avoid arbitrary reordering on subsequent builds.
Method tag_svn_revision.setter Undocumented
Method write_file Write `data` to `filename` (if not a dry run) after announcing it
Method write_or_delete_file Write `data` to `filename` or delete if empty
Class Variable boolean_options Undocumented
Class Variable description Undocumented
Class Variable negative_opt Undocumented
Class Variable user_options Undocumented
Instance Variable broken_egg_info Undocumented
Instance Variable egg_base Undocumented
Instance Variable egg_info Undocumented
Instance Variable egg_name Undocumented
Instance Variable egg_version Undocumented
Instance Variable filelist Undocumented
Instance Variable ignore_egg_info_in_manifest Undocumented
Property tag_svn_revision Undocumented
Method _get_egg_basename Compute filename of the output egg. Private API.

Inherited from InfoCommon:

Method tagged_version Undocumented
Method tags Undocumented
Class Variable tag_build Undocumented
Class Variable tag_date Undocumented
Class Variable vtags Undocumented
Property name Undocumented
Method _already_tagged Undocumented
Method _maybe_tag egg_info may be called more than once for a distribution, in which case the version string already contains all tags.
Method _safe_tags Undocumented

Inherited from Command (via InfoCommon):

Method __init__ Construct the command for dist, updating vars(self) with any keyword parameters.
Method ensure_string_list 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"].
Method reinitialize_command Undocumented
Class Variable command_consumes_arguments Undocumented
Method _ensure_stringlike Undocumented
def check_broken_egg_info(self): (source)

Undocumented

def delete_file(self, filename): (source)

Delete `filename` (if not a dry run) after announcing it

def finalize_options(self): (source)

Undocumented

def find_sources(self): (source)

Generate SOURCES.txt manifest file

def initialize_options(self): (source)

Undocumented

def run(self): (source)

Undocumented

def save_version_info(self, filename): (source)

Materialize the value of date into the build tag. Install build keys in a deterministic order to avoid arbitrary reordering on subsequent builds.

@tag_svn_revision.setter
def tag_svn_revision(self, value): (source)

Undocumented

def write_file(self, what, filename, data): (source)

Write `data` to `filename` (if not a dry run) after announcing it `what` is used in a log message to identify what is being written to the file.

def write_or_delete_file(self, what, filename, data, force=False): (source)

Write `data` to `filename` or delete if empty If `data` is non-empty, this routine is the same as ``write_file()``. If `data` is empty but not ``None``, this is the same as calling ``delete_file(filename)`. If `data` is ``None``, then this is a no-op unless `filename` exists, in which case a warning is issued about the orphaned file (if `force` is false), or deleted (if `force` is true).

boolean_options: list[str] = (source)

Undocumented

description: str = (source)

Undocumented

negative_opt: dict[str, str] = (source)

Undocumented

user_options: list = (source)

Undocumented

broken_egg_info = (source)

Undocumented

egg_base = (source)

Undocumented

egg_info = (source)

Undocumented

egg_name = (source)

Undocumented

egg_version = (source)

Undocumented

filelist = (source)

Undocumented

ignore_egg_info_in_manifest: bool = (source)

Undocumented

@property
tag_svn_revision = (source)

Undocumented

def _get_egg_basename(self, py_version=PY_MAJOR, platform=None): (source)

Compute filename of the output egg. Private API.