Module install
distutils.command.install
Implements the Distutils 'install' command.
|
__revision__ = ' $Id: install.py 43363 2006-03-27 21:55:21Z phi ...
|
|
WINDOWS_SCHEME = { ' data ' : ' $base ' , ' headers ' : ' $base/Include/$ ...
|
|
INSTALL_SCHEMES = { ' mac ' : { ' data ' : ' $base ' , ' headers ' : ' $base/ ...
|
|
SCHEME_KEYS = ( ' purelib ' , ' platlib ' , ' headers ' , ' scripts ' , ' da ...
|
Imports:
log,
sys,
os,
string,
IntType,
TypeType,
BooleanType,
CodeType,
UnboundMethodType,
StringType,
BuiltinMethodType,
FloatType,
DictionaryType,
NotImplementedType,
BuiltinFunctionType,
DictProxyType,
GeneratorType,
InstanceType,
ObjectType,
DictType,
GetSetDescriptorType,
FileType,
EllipsisType,
StringTypes,
ListType,
MethodType,
TupleType,
ModuleType,
FrameType,
LongType,
BufferType,
TracebackType,
ClassType,
MemberDescriptorType,
UnicodeType,
SliceType,
ComplexType,
LambdaType,
FunctionType,
XRangeType,
NoneType,
Command,
DEBUG,
get_config_vars,
DistutilsPlatformError,
write_file,
convert_path,
subst_vars,
change_root,
DistutilsOptionError,
glob
__revision__
- Value:
' $Id: install.py 43363 2006-03-27 21:55:21Z phillip.eby $ '
|
|
WINDOWS_SCHEME
- Value:
{ ' data ' : ' $base ' ,
' headers ' : ' $base/Include/$dist_name ' ,
' platlib ' : ' $base/Lib/site-packages ' ,
' purelib ' : ' $base/Lib/site-packages ' ,
' scripts ' : ' $base/Scripts ' }
|
|
INSTALL_SCHEMES
- Value:
{ ' mac ' : { ' data ' : ' $base ' ,
' headers ' : ' $base/Include/$dist_name ' ,
' platlib ' : ' $base/Lib/site-packages ' ,
' purelib ' : ' $base/Lib/site-packages ' ,
' scripts ' : ' $base/Scripts ' } ,
' nt ' : { ' data ' : ' $base ' ,
' headers ' : ' $base/Include/$dist_name ' ,
' platlib ' : ' $base/Lib/site-packages ' ,
...
|
|
SCHEME_KEYS
- Value:
( ' purelib ' , ' platlib ' , ' headers ' , ' scripts ' , ' data ' )
|
|