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

Public Member Functions

def initialize_options
 
def finalize_options
 
def handle_extra_path
 
def run
 
def do_egg_install
 

Public Attributes

 old_and_unmanageable
 
 single_version_externally_managed
 
 path_file
 
 extra_dirs
 

Static Public Attributes

list user_options
 
list boolean_options
 
list new_commands
 

Static Private Member Functions

def _called_from_setup
 

Static Private Attributes

tuple _nc = dict(new_commands)
 

Detailed Description

Use easy_install to install the package, w/dependencies

Member Function Documentation

def setuptools.command.install.install._called_from_setup (   run_frame)
staticprivate
Attempt to detect whether run() was called from setup() or by another
command.  If called by setup(), the parent caller will be the
'run_command' method in 'distutils.dist', and *its* caller will be
the 'run_commands' method.  If called any other way, the
immediate caller *might* be 'run_command', but it won't have been
called by 'run_commands'. Return True in that case or if a call stack
is unavailable. Return False otherwise.
def setuptools.command.install.install.do_egg_install (   self)
def setuptools.command.install.install.finalize_options (   self)
def setuptools.command.install.install.handle_extra_path (   self)
def setuptools.command.install.install.initialize_options (   self)
def setuptools.command.install.install.run (   self)

Member Data Documentation

tuple setuptools.command.install.install._nc = dict(new_commands)
staticprivate
list setuptools.command.install.install.boolean_options
static
Initial value:
1 = orig.install.boolean_options+[
2  'old-and-unmanageable', 'single-version-externally-managed',
3  ]
setuptools.command.install.install.extra_dirs
list setuptools.command.install.install.new_commands
static
Initial value:
1 = [
2  ('install_egg_info', lambda self: True),
3  ('install_scripts', lambda self: True),
4  ]
setuptools.command.install.install.old_and_unmanageable
setuptools.command.install.install.path_file
setuptools.command.install.install.single_version_externally_managed
list setuptools.command.install.install.user_options
static
Initial value:
1 = orig.install.user_options+[
2  ('old-and-unmanageable', None, "Try not to use this!"),
3  ('single-version-externally-managed', None,
4  "used by system package builders to create 'flat' eggs"),
5  ]

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

Copyright 2014 Google Inc. All rights reserved.