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

« back to all changes in this revision

Viewing changes to setup.py

Remove the setup.configure import from setup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# This is a command-line application, for use by the administrator.
24
24
# This program is a frontend for the modules in the setup packages that 
25
 
# configure, build and install IVLE in three separate steps.
 
25
# build and install IVLE in separate steps.
26
26
# It is called with at least one argument, which specifies which operation to
27
27
# take.
28
28
 
29
29
import sys
30
 
import setup.configure
31
30
import setup.build
32
31
import setup.install
33
 
import setup.listmake
34
 
 
35
32
 
36
33
def main(argv=None):
37
34
    if argv is None:
40
37
    # Print the opening spiel including the GPL notice
41
38
 
42
39
    print """IVLE - Informatics Virtual Learning Environment Setup
43
 
Copyright (C) 2007-2008 The University of Melbourne
 
40
Copyright (C) 2007-2009 The University of Melbourne
44
41
IVLE comes with ABSOLUTELY NO WARRANTY.
45
42
This is free software, and you are welcome to redistribute it
46
43
under certain conditions. See LICENSE.txt for details.
64
61
        print """Usage: python setup.py operation [options]
65
62
Operation can be:
66
63
    help [operation]
67
 
    listmake (developer use only)
68
 
    config
69
64
    build
70
65
    install
71
66
 
80
75
    try:
81
76
        oper_func = {
82
77
            'help' : help,
83
 
            'config' : setup.configure.configure,
84
78
            'build' : setup.build.build,
85
 
            'listmake' : setup.listmake.listmake,
86
79
            'install' : setup.install.install,
87
 
            #'updatejails' : None,
88
80
        }[operation]
89
81
    except KeyError:
90
82
        print >>sys.stderr, (