def setuptools.command.egg_info.egg_info.check_broken_egg_info |
( |
|
self | ) |
|
def setuptools.command.egg_info.egg_info.delete_file |
( |
|
self, |
|
|
|
filename |
|
) |
| |
Delete `filename` (if not a dry run) after announcing it
def setuptools.command.egg_info.egg_info.finalize_options |
( |
|
self | ) |
|
def setuptools.command.egg_info.egg_info.find_sources |
( |
|
self | ) |
|
Generate SOURCES.txt manifest file
def setuptools.command.egg_info.egg_info.get_svn_revision |
( |
| ) |
|
|
static |
def setuptools.command.egg_info.egg_info.initialize_options |
( |
|
self | ) |
|
def setuptools.command.egg_info.egg_info.run |
( |
|
self | ) |
|
def setuptools.command.egg_info.egg_info.save_version_info |
( |
|
self, |
|
|
|
filename |
|
) |
| |
def setuptools.command.egg_info.egg_info.tagged_version |
( |
|
self | ) |
|
def setuptools.command.egg_info.egg_info.tags |
( |
|
self | ) |
|
def setuptools.command.egg_info.egg_info.write_file |
( |
|
self, |
|
|
|
what, |
|
|
|
filename, |
|
|
|
data |
|
) |
| |
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 setuptools.command.egg_info.egg_info.write_or_delete_file |
( |
|
self, |
|
|
|
what, |
|
|
|
filename, |
|
|
|
data, |
|
|
|
force = False |
|
) |
| |
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).
list setuptools.command.egg_info.egg_info.boolean_options = ['tag-date', 'tag-svn-revision'] |
|
static |
setuptools.command.egg_info.egg_info.broken_egg_info |
string setuptools.command.egg_info.egg_info.description = "create a distribution's .egg-info directory" |
|
static |
setuptools.command.egg_info.egg_info.egg_base |
setuptools.command.egg_info.egg_info.egg_info |
setuptools.command.egg_info.egg_info.egg_name |
setuptools.command.egg_info.egg_info.egg_version |
setuptools.command.egg_info.egg_info.filelist |
dictionary setuptools.command.egg_info.egg_info.negative_opt |
|
static |
Initial value: 1 = {
'no-svn-revision':
'tag-svn-revision',
setuptools.command.egg_info.egg_info.tag_build |
setuptools.command.egg_info.egg_info.tag_date |
setuptools.command.egg_info.egg_info.tag_svn_revision |
list setuptools.command.egg_info.egg_info.user_options |
|
static |
Initial value:
2 (
'egg-base=',
'e',
"directory containing .egg-info directories"
3 " (default: top of the source tree)"),
4 (
'tag-svn-revision',
'r',
5 "Add subversion revision ID to version number"),
6 (
'tag-date',
'd',
"Add date stamp (e.g. 20050528) to version number"),
7 (
'tag-build=',
'b',
"Specify explicit tag to add to version number"),
8 (
'no-svn-revision',
'R',
9 "Don't add subversion revision ID [default]"),
10 (
'no-date',
'D',
"Don't include date stamp [default]"),
setuptools.command.egg_info.egg_info.vtags |
The documentation for this class was generated from the following file:
- orbits/lib/python2.7/site-packages/setuptools/command/egg_info.py
Copyright 2014 Google Inc. All rights reserved.