~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2009-06-02 00:09:55 UTC
  • mto: (359.3.1 hpss-writes)
  • mto: This revision was merged to the branch mainline in revision 367.
  • Revision ID: jelmer@samba.org-20090602000955-91nohd46pktp8j8k
Support serving branches over HTTP using the smart server protocol.

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",
40
 
                "loggerhead/templates",
41
 
                "bzrlib.plugins.loggerhead"],
42
 
    package_dir={'bzrlib.plugins.loggerhead':'.'},
 
37
                "loggerhead/templates"],
43
38
    package_data = {"loggerhead": ["templates/*.pt",
44
39
                                   "static/css/*.css",
45
40
                                   "static/javascript/*.js",
67
62
                                   "static/javascript/yui/build/yui-base/*",
68
63
                                   "static/images/*"]},
69
64
    data_files = [
70
 
        ('share/man/man1', ['serve-branches.1']),
71
 
        ('share/doc/loggerhead', ['loggerhead.conf.example',
72
 
                                  'apache-loggerhead.conf',
73
 
                                  'bazaar.conf']),
 
65
        ('share/man/man1', ['start-loggerhead.1',
 
66
                            'stop-loggerhead.1',
 
67
                            'serve-branches.1']),
 
68
        ('share/doc/loggerhead', ['loggerhead.conf.example']),
74
69
        ],
75
70
    )