summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--command/build.py2
-rw-r--r--command/build_clib.py2
-rw-r--r--command/build_ext.py2
-rw-r--r--command/build_lib.py2
-rw-r--r--command/build_py.py2
-rw-r--r--command/install.py2
-rw-r--r--command/install_ext.py2
-rw-r--r--command/install_lib.py2
-rw-r--r--command/install_py.py2
-rw-r--r--command/sdist.py2
10 files changed, 10 insertions, 10 deletions
diff --git a/command/build.py b/command/build.py
index 82a4e6c2..bcbb9332 100644
--- a/command/build.py
+++ b/command/build.py
@@ -10,7 +10,7 @@ import os
from distutils.core import Command
-class Build (Command):
+class build (Command):
description = "build everything needed to install"
diff --git a/command/build_clib.py b/command/build_clib.py
index 65712818..749b0c2b 100644
--- a/command/build_clib.py
+++ b/command/build_clib.py
@@ -26,7 +26,7 @@ from distutils.errors import *
from distutils.ccompiler import new_compiler
-class BuildLib (Command):
+class build_lib (Command):
options = [('debug', 'g',
"compile with debugging information"),
diff --git a/command/build_ext.py b/command/build_ext.py
index 42eab479..ea0e294a 100644
--- a/command/build_ext.py
+++ b/command/build_ext.py
@@ -20,7 +20,7 @@ extension_name_re = re.compile \
(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)"
diff --git a/command/build_lib.py b/command/build_lib.py
index 65712818..749b0c2b 100644
--- a/command/build_lib.py
+++ b/command/build_lib.py
@@ -26,7 +26,7 @@ from distutils.errors import *
from distutils.ccompiler import new_compiler
-class BuildLib (Command):
+class build_lib (Command):
options = [('debug', 'g',
"compile with debugging information"),
diff --git a/command/build_py.py b/command/build_py.py
index 048962b2..f492ee37 100644
--- a/command/build_py.py
+++ b/command/build_py.py
@@ -14,7 +14,7 @@ from distutils.core import Command
from distutils.errors import *
-class BuildPy (Command):
+class build_py (Command):
description = "\"build\" pure Python modules (copy to build directory)"
diff --git a/command/install.py b/command/install.py
index 0e5b01cc..b57ec6f2 100644
--- a/command/install.py
+++ b/command/install.py
@@ -12,7 +12,7 @@ from distutils.core import Command
from distutils.util import write_file
-class Install (Command):
+class install (Command):
description = "install everything from build directory"
diff --git a/command/install_ext.py b/command/install_ext.py
index 599a37e1..ba343d2e 100644
--- a/command/install_ext.py
+++ b/command/install_ext.py
@@ -9,7 +9,7 @@ __rcsid__ = "$Id$"
from distutils.core import Command
from distutils.util import copy_tree
-class InstallExt (Command):
+class install_ext (Command):
description = "install C/C++ extension modules"
diff --git a/command/install_lib.py b/command/install_lib.py
index 2e8a6706..e898ce0c 100644
--- a/command/install_lib.py
+++ b/command/install_lib.py
@@ -6,7 +6,7 @@ import sys, string
from distutils.core import Command
from distutils.util import copy_tree
-class InstallPy (Command):
+class install_py (Command):
description = "install pure Python modules"
diff --git a/command/install_py.py b/command/install_py.py
index 2e8a6706..e898ce0c 100644
--- a/command/install_py.py
+++ b/command/install_py.py
@@ -6,7 +6,7 @@ import sys, string
from distutils.core import Command
from distutils.util import copy_tree
-class InstallPy (Command):
+class install_py (Command):
description = "install pure Python modules"
diff --git a/command/sdist.py b/command/sdist.py
index c8101a70..d8908328 100644
--- a/command/sdist.py
+++ b/command/sdist.py
@@ -17,7 +17,7 @@ from distutils.text_file import TextFile
from distutils.errors import DistutilsExecError
-class Sdist (Command):
+class sdist (Command):
description = "create a source distribution (tarball, zip file, etc.)"