Orbits  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
Public Member Functions | Public Attributes | Static Public Attributes | Private Member Functions | List of all members
setuptools.command.sdist.sdist Class Reference
Inheritance diagram for setuptools.command.sdist.sdist:
setuptools.command.egg_info.manifest_maker

Public Member Functions

def run
 
def add_defaults
 
def check_readme
 
def make_release_tree
 
def read_manifest
 

Public Attributes

 filelist
 

Static Public Attributes

list user_options
 
dictionary negative_opt = {}
 
tuple has_leaky_handle
 
 read_template = __read_template_hack
 

Private Member Functions

def __read_template_hack
 
def _manifest_is_not_generated
 

Detailed Description

Smart sdist that finds anything supported by revision control

Member Function Documentation

def setuptools.command.sdist.sdist.__read_template_hack (   self)
private
def setuptools.command.sdist.sdist._manifest_is_not_generated (   self)
private
def setuptools.command.sdist.sdist.add_defaults (   self)
def setuptools.command.sdist.sdist.check_readme (   self)
def setuptools.command.sdist.sdist.make_release_tree (   self,
  base_dir,
  files 
)
def setuptools.command.sdist.sdist.read_manifest (   self)
Read the manifest file (named by 'self.manifest') and use it to
fill in 'self.filelist', the list of files to include in the source
distribution.
def setuptools.command.sdist.sdist.run (   self)

Member Data Documentation

setuptools.command.sdist.sdist.filelist
tuple setuptools.command.sdist.sdist.has_leaky_handle
static
Initial value:
1 = (
2  sys.version_info < (2,7,2)
3  or (3,0) <= sys.version_info < (3,1,4)
4  or (3,2) <= sys.version_info < (3,2,1)
5  )
dictionary setuptools.command.sdist.sdist.negative_opt = {}
static
setuptools.command.sdist.sdist.read_template = __read_template_hack
static
list setuptools.command.sdist.sdist.user_options
static
Initial value:
1 = [
2  ('formats=', None,
3  "formats for source distribution (comma-separated list)"),
4  ('keep-temp', 'k',
5  "keep the distribution tree around after creating " +
6  "archive file(s)"),
7  ('dist-dir=', 'd',
8  "directory to put the source distribution archive(s) in "
9  "[default: dist]"),
10  ]

The documentation for this class was generated from the following file:

Copyright 2014 Google Inc. All rights reserved.