~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2008-08-06 18:39:15 UTC
  • mto: (197.1.9 pathargs)
  • mto: This revision was merged to the branch mainline in revision 202.
  • Revision ID: jelmer@samba.org-20080806183915-81q0zlnxq57s0egb
Add --pidfile option to stop-loggerhead.

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
 
        ],
37
 
    packages = ["loggerhead",
38
 
                "loggerhead/apps",
39
 
                "loggerhead/controllers",
40
 
                "loggerhead/templates",
41
 
                "bzrlib.plugins.loggerhead"],
42
 
    package_dir={'bzrlib.plugins.loggerhead':'.'},
43
 
    package_data = {"loggerhead": ["templates/*.pt",
44
 
                                   "static/css/*.css",
45
 
                                   "static/javascript/*.js",
46
 
                                   "static/javascript/yui/build/anim/*",
47
 
                                   "static/javascript/yui/build/base/*",
48
 
                                   "static/javascript/yui/build/cssbase/*",
49
 
                                   "static/javascript/yui/build/cssgrids/*",
50
 
                                   "static/javascript/yui/build/dd/*",
51
 
                                   "static/javascript/yui/build/dump/*",
52
 
                                   "static/javascript/yui/build/get/*",
53
 
                                   "static/javascript/yui/build/json/*",
54
 
                                   "static/javascript/yui/build/node/*",
55
 
                                   "static/javascript/yui/build/queue/*",
56
 
                                   "static/javascript/yui/build/yui/*",
57
 
                                   "static/javascript/yui/build/attribute/*",
58
 
                                   "static/javascript/yui/build/cookie/*",
59
 
                                   "static/javascript/yui/build/cssfonts/*",
60
 
                                   "static/javascript/yui/build/cssreset/*",
61
 
                                   "static/javascript/yui/build/dom/*",
62
 
                                   "static/javascript/yui/build/event/*",
63
 
                                   "static/javascript/yui/build/io/*",
64
 
                                   "static/javascript/yui/build/loader/*",
65
 
                                   "static/javascript/yui/build/oop/*",
66
 
                                   "static/javascript/yui/build/substitute/*",
67
 
                                   "static/javascript/yui/build/yui-base/*",
68
 
                                   "static/images/*"]},
 
33
    scripts = ["start-loggerhead", "stop-loggerhead", "serve-branches"],
 
34
    packages = ["loggerhead", 
 
35
                "loggerhead/apps", 
 
36
                "loggerhead/controllers", 
 
37
                "loggerhead/templates"],
 
38
    package_data = {"loggerhead":["templates/*.pt", 
 
39
                                  "static/css/*.css", 
 
40
                                  "static/javascript/*", 
 
41
                                  "static/images/*"]},
69
42
    data_files = [
70
 
        ('share/man/man1', ['serve-branches.1']),
71
 
        ('share/doc/loggerhead', ['loggerhead.conf.example',
72
 
                                  'apache-loggerhead.conf',
73
 
                                  'bazaar.conf']),
 
43
        ('share/man/man1',['start-loggerhead.1', 'stop-loggerhead.1', 
 
44
                           'serve-branches.1']),
 
45
        ('share/doc/loggerhead', ['loggerhead.conf.example']),
74
46
        ],
75
47
    )