from distutils.core import Command
-class Build (Command):
+class build (Command):
description = "build everything needed to install"
from distutils.ccompiler import new_compiler
-class BuildLib (Command):
+class build_lib (Command):
options = [('debug', 'g',
"compile with debugging information"),
(r'^[a-zA-Z_][a-zA-Z_0-9]*(\.[a-zA-Z_][a-zA-Z_0-9]*)*$')
-class BuildExt (Command):
+class build_ext (Command):
description = "build C/C++ extensions (compile/link to build directory)"
from distutils.ccompiler import new_compiler
-class BuildLib (Command):
+class build_lib (Command):
options = [('debug', 'g',
"compile with debugging information"),
from distutils.errors import *
-class BuildPy (Command):
+class build_py (Command):
description = "\"build\" pure Python modules (copy to build directory)"
from distutils.util import write_file
-class Install (Command):
+class install (Command):
description = "install everything from build directory"
from distutils.core import Command
from distutils.util import copy_tree
-class InstallExt (Command):
+class install_ext (Command):
description = "install C/C++ extension modules"
from distutils.core import Command
from distutils.util import copy_tree
-class InstallPy (Command):
+class install_py (Command):
description = "install pure Python modules"
from distutils.core import Command
from distutils.util import copy_tree
-class InstallPy (Command):
+class install_py (Command):
description = "install pure Python modules"
from distutils.errors import DistutilsExecError
-class Sdist (Command):
+class sdist (Command):
description = "create a source distribution (tarball, zip file, etc.)"