Orbits  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
Public Member Functions | Static Public Attributes | List of all members
pip.commands.wheel.WheelCommand Class Reference
Inheritance diagram for pip.commands.wheel.WheelCommand:
pip.basecommand.Command _object

Public Member Functions

def __init__
 
def run
 
- Public Member Functions inherited from pip.basecommand.Command
def __init__
 
def setup_logging
 
def parse_args
 
def main
 

Static Public Attributes

string name = 'wheel'
 
string usage
 
string summary = 'Build wheels from your requirements.'
 
- Static Public Attributes inherited from pip.basecommand.Command
 name = None
 
 usage = None
 
 hidden = False
 

Additional Inherited Members

- Public Attributes inherited from pip.basecommand.Command
 parser
 
 cmd_opts
 

Detailed Description

Build Wheel archives for your requirements and dependencies.

Wheel is a built-package format, and offers the advantage of not recompiling your software during every install.
For more details, see the wheel docs: http://wheel.readthedocs.org/en/latest.

Requirements: setuptools>=0.8, and wheel.

'pip wheel' uses the bdist_wheel setuptools extension from the wheel package to build individual wheels.

Constructor & Destructor Documentation

def pip.commands.wheel.WheelCommand.__init__ (   self,
  args,
  kw 
)

Member Function Documentation

def pip.commands.wheel.WheelCommand.run (   self,
  options,
  args 
)

Member Data Documentation

string pip.commands.wheel.WheelCommand.name = 'wheel'
static
string pip.commands.wheel.WheelCommand.summary = 'Build wheels from your requirements.'
static
string pip.commands.wheel.WheelCommand.usage
static
Initial value:
1 = """
2  %prog [options] <requirement specifier> ...
3  %prog [options] -r <requirements file> ...
4  %prog [options] <vcs project url> ...
5  %prog [options] <local project path> ...
6  %prog [options] <archive url/path> ..."""

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

Copyright 2014 Google Inc. All rights reserved.