~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: William Grant
  • Date: 2009-01-13 01:36:15 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1123
Merge setup-refactor branch. This completely breaks existing installations;
every path (both filesystem and Python) has changed. Do not upgrade without
knowing what you are doing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
import setup.configure
31
31
import setup.build
32
32
import setup.install
33
 
import setup.listmake
34
33
 
35
34
 
36
35
def main(argv=None):
64
63
        print """Usage: python setup.py operation [options]
65
64
Operation can be:
66
65
    help [operation]
67
 
    listmake (developer use only)
68
66
    config
69
67
    build
70
68
    install
82
80
            'help' : help,
83
81
            'config' : setup.configure.configure,
84
82
            'build' : setup.build.build,
85
 
            'listmake' : setup.listmake.listmake,
86
83
            'install' : setup.install.install,
87
84
            #'updatejails' : None,
88
85
        }[operation]