~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: William Grant
  • Date: 2011-03-23 05:21:34 UTC
  • mto: This revision was merged to the branch mainline in revision 442.
  • Revision ID: william.grant@canonical.com-20110323052134-nkaav7ymzunfwc9w
Use str.replace instead of lots of dict lookups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    license = "GNU GPL v2 or later",
31
31
    maintainer = "Michael Hudson",
32
32
    maintainer_email = "michael.hudson@canonical.com",
33
 
    scripts = ["start-loggerhead",
34
 
               "stop-loggerhead",
35
 
               "serve-branches",
36
 
               "loggerhead.wsgi"],
 
33
    scripts = ["serve-branches"],
37
34
    packages = ["loggerhead",
38
35
                "loggerhead/apps",
39
36
                "loggerhead/controllers",
67
64
                                   "static/javascript/yui/build/yui-base/*",
68
65
                                   "static/images/*"]},
69
66
    data_files = [
70
 
        ('share/man/man1', ['start-loggerhead.1',
71
 
                            'stop-loggerhead.1',
72
 
                            'serve-branches.1']),
73
 
        ('share/doc/loggerhead', ['loggerhead.conf.example',
74
 
                                  'README.mod_wsgi',
75
 
                                  'apache-loggerhead.conf',
76
 
                                  'bazaar.conf']),
 
67
        ('share/man/man1', ['serve-branches.1']),
77
68
        ],
78
69
    )