~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Matt Nordhoff
  • Date: 2009-06-26 09:42:43 UTC
  • Revision ID: mnordhoff@mattnordhoff.com-20090626094243-8ia9poyixoj1en6l
Pass around and use argv correctly

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
"""Loggerhead is a web viewer for projects in bazaar"""
20
20
 
 
21
 
21
22
from distutils.core import setup
22
 
 
23
23
import loggerhead
24
24
 
25
25
 
30
30
    license = "GNU GPL v2 or later",
31
31
    maintainer = "Michael Hudson",
32
32
    maintainer_email = "michael.hudson@canonical.com",
33
 
    scripts = [
34
 
        "serve-branches",
35
 
        "loggerhead.wsgi",
36
 
        ],
 
33
    scripts = ["start-loggerhead", "stop-loggerhead", "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', ['serve-branches.1']),
71
 
        ('share/doc/loggerhead', ['loggerhead.conf.example',
72
 
                                  'apache-loggerhead.conf',
73
 
                                  'bazaar.conf']),
 
67
        ('share/man/man1', ['start-loggerhead.1',
 
68
                            'stop-loggerhead.1',
 
69
                            'serve-branches.1']),
 
70
        ('share/doc/loggerhead', ['loggerhead.conf.example']),
74
71
        ],
75
72
    )