equal
deleted
inserted
replaced
|
1 """distutils.command.x |
|
2 |
|
3 Implements the Distutils 'x' command. |
|
4 """ |
|
5 |
|
6 # created 2000/mm/dd, John Doe |
|
7 |
|
8 __revision__ = "$Id$" |
|
9 |
|
10 from distutils.core import Command |
|
11 |
|
12 |
|
13 class x (Command): |
|
14 |
|
15 # Brief (40-50 characters) description of the command |
|
16 description = "" |
|
17 |
|
18 # List of option tuples: long name, short name (None if no short |
|
19 # name), and help string. |
|
20 user_options = [('', '', |
|
21 ""), |
|
22 ] |
|
23 |
|
24 |
|
25 def initialize_options (self): |
|
26 self. = None |
|
27 self. = None |
|
28 self. = None |
|
29 |
|
30 # initialize_options() |
|
31 |
|
32 |
|
33 def finalize_options (self): |
|
34 if self.x is None: |
|
35 self.x = |
|
36 |
|
37 # finalize_options() |
|
38 |
|
39 |
|
40 def run (self): |
|
41 |
|
42 |
|
43 # run() |
|
44 |
|
45 # class x |