]> granicus.if.org Git - python/commitdiff
Template for writing Distutils command modules.
authorGregory P. Smith <greg@mad-scientist.com>
Sat, 13 May 2000 03:32:36 +0000 (03:32 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sat, 13 May 2000 03:32:36 +0000 (03:32 +0000)
Lib/distutils/command/command_template [new file with mode: 0644]

diff --git a/Lib/distutils/command/command_template b/Lib/distutils/command/command_template
new file mode 100644 (file)
index 0000000..f0329aa
--- /dev/null
@@ -0,0 +1,39 @@
+"""distutils.command.x
+
+Implements the Distutils 'x' command."""
+
+# created 2000/mm/dd, Greg Ward
+
+__revision__ = "$Id$"
+
+from distutils.core import Command
+
+
+class x (Command):
+
+    description = ""
+
+    user_options = [('', '',
+                     ""),
+                   ]
+
+
+    def initialize_options (self):
+        self. = None
+        self. = None
+        self. = None
+
+    # initialize_options()
+
+
+    def finalize_options (self):
+
+    # finalize_options()
+
+
+    def run (self):
+
+
+    # run()
+
+# class x