~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-05 22:30:40 UTC
  • mfrom: (13618.2.1 bug821487)
  • Revision ID: launchpad@pqm.canonical.com-20110805223040-bjjdqcrz4aoswkmg
[r=bac][bug=821487] rip out the Chameleon dependency of ++profile++,
        and thereby speed up the build by a few seconds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        'zope.app.apidoc',
84
84
        'zope.app.appsetup',
85
85
        'zope.app.component',
86
 
        'zope.app.dav', # ./zcml/package-includes/dav-configure.zcml
 
86
        'zope.app.dav',  # ./zcml/package-includes/dav-configure.zcml
87
87
        'zope.app.error',
88
88
        'zope.app.exception',
89
89
        'zope.app.file',
112
112
        'zope.formlib',
113
113
        'zope.i18n',
114
114
        'zope.interface',
115
 
        'zope.hookable', # indirect, via zope.app.component
 
115
        'zope.hookable',  # indirect, via zope.app.component
116
116
        'zope.lifecycleevent',
117
117
        'zope.location',
118
118
        'zope.login',
129
129
        'zope.testbrowser',
130
130
        'zope.testing',
131
131
        'zope.traversing',
132
 
        'zope.viewlet', # only fixing a broken dependency
 
132
        'zope.viewlet',  # only fixing a broken dependency
133
133
        # Loggerhead dependencies. These should be removed once
134
134
        # bug 383360 is fixed and we include it as a source dist.
135
135
        'Paste',
149
149
        ]
150
150
    ),
151
151
    entry_points=dict(
152
 
        console_scripts=[ # `console_scripts` is a magic name to setuptools
 
152
        console_scripts=[  # `console_scripts` is a magic name to setuptools
153
153
            'apiindex = lp.scripts.utilities.apiindex:main',
154
154
            'killservice = lp.scripts.utilities.killservice:main',
155
155
            'jsbuild = lp.scripts.utilities.js.jsbuild:main',
159
159
            'start_librarian '
160
160
                '= canonical.launchpad.scripts.runlaunchpad:start_librarian',
161
161
            'ec2 = devscripts.ec2test.entrypoint:main',
162
 
            'compile_templates '
163
 
                '= canonical.launchpad.scripts:execute_zcml_for_scripts',
164
162
        ]
165
163
    ),
166
164
)