~launchpad-pqm/launchpad/devel

8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
1
#!/usr/bin/env python
8687.15.25 by Karl Fogel
Fix formatting around new license block.
2
#
10104.3.2 by Michael Hudson
update copyright year
3
# Copyright 2009, 2010 Canonical Ltd.  This software is licensed under the
8687.15.10 by Karl Fogel
Add the copyright header block to top-level files.
4
# GNU Affero General Public License version 3 (see the file LICENSE).
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
5
6
import ez_setup
7
ez_setup.use_setuptools()
8
9
from setuptools import setup, find_packages
10
11
__version__ = '2.2.3'
12
13
setup(
14
    name='lp',
15
    version=__version__,
16
    packages=find_packages('lib'),
8329.1.4 by Gary Poster
respond to reviews; in particular, add doc.
17
    package_dir={'': 'lib'},
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
18
    include_package_data=True,
19
    zip_safe=False,
20
    maintainer='Launchpad Developers',
21
    description=('A unique collaboration and Bazaar code hosting platform '
22
                 'for software projects.'),
8697.27.7 by Gary Poster
merge trunk.
23
    license='Affero GPL v3',
8521.3.1 by Gary Poster
initial cut at getting Zope in buildout and out of sourcecode
24
    # this list should only contain direct dependencies--things imported or
25
    # used in zcml.
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
26
    install_requires=[
9826.11.14 by Aaron Bentley
Add dependency on ampoule.
27
        'ampoule',
8857.1.1 by Jonathan Lange
Get Bazaar from the buildout.
28
        'bzr',
8521.3.5 by Gary Poster
merge from trunk, including sidnei chameleon branch. conflicts resolved, but make run no longer works because zope.viewlet is around, minimally, with the older versions of the zope packages I am using
29
        'chameleon.core',
30
        'chameleon.zpt',
9778.1.37 by Maris Fogels
Added a missing dependency for the cssutils library, required by the lazr-js build system.
31
        'cssutils',
8357.5.10 by Gary Poster
make changes per review by Francis
32
        'feedvalidator',
8911.2.1 by Stuart Bishop
Add funkload 1.10.0 to the Launchpad buildout
33
        'funkload',
8357.5.10 by Gary Poster
make changes per review by Francis
34
        'launchpadlib',
9123.2.2 by Gary Poster
initial switch to lazr distributions. many failures in webservice.
35
        'lazr.batchnavigator',
36
        'lazr.config',
37
        'lazr.delegates',
38
        'lazr.enum',
39
        'lazr.lifecycle',
40
        'lazr.restful',
8697.22.1 by Barry Warsaw
Convert to using lazr.smtptest. Move and re-enable a few mailman tests we'd
41
        'lazr.smtptest',
9778.1.1 by Guilherme Salgado
Use YUI 3.0.0 and the new lazr-js
42
        'lazr.testing',
8357.5.10 by Gary Poster
make changes per review by Francis
43
        'lazr.uri',
9570.14.1 by Bjorn Tillenius
Use lazr-js as an egg.
44
        'lazr-js',
8521.3.1 by Gary Poster
initial cut at getting Zope in buildout and out of sourcecode
45
        'mechanize',
10542.7.2 by Guilherme Salgado
Use buildout for meliae
46
        'meliae',
10129.6.19 by Tim Penhey
Make hg imports work!
47
        'mercurial',
8697.12.1 by Stuart Bishop
Add mocker to out buildout environment
48
        'mocker',
8357.5.2 by Gary Poster
incremental changes to using more eggs
49
        'oauth',
9639.1.4 by Gavin Panella
The policy seems to be to put all deps in setup.py.
50
        'paramiko',
9232.2.1 by Stuart Bishop
Bring python-memcached 1.44 into buildout
51
        'python-memcached',
9920.2.2 by Michael Hudson
Twisted depends on pyasn1 now
52
        'pyasn1',
8357.5.2 by Gary Poster
incremental changes to using more eggs
53
        'python-openid',
8650.1.1 by Stuart Bishop
Upgrade pytz to 2009i
54
        'pytz',
8697.27.4 by Gary Poster
we build again, at least, though tests no longer start
55
        # This appears to be a broken indirect dependency from zope.security:
56
        'RestrictedPython',
10547.1.1 by Michael Hudson
getting started
57
        'setproctitle',
8357.5.10 by Gary Poster
make changes per review by Francis
58
        'setuptools',
7849.19.2 by Sidnei da Silva
- Add pinned versions for z3c.ptcompat and the rest of the stack
59
        'sourcecodegen',
7675.239.1 by Stuart Bishop
Revert 8192 (Revert Storm 0.14 upgrade again)
60
        'storm',
10085.6.1 by Jonathan Lange
Use the egg, not sourcecode.
61
        'testtools',
8521.3.1 by Gary Poster
initial cut at getting Zope in buildout and out of sourcecode
62
        'transaction',
10547.1.1 by Michael Hudson
getting started
63
        'Twisted',
8357.5.2 by Gary Poster
incremental changes to using more eggs
64
        'wadllib',
7849.19.2 by Sidnei da Silva
- Add pinned versions for z3c.ptcompat and the rest of the stack
65
        'z3c.pt',
66
        'z3c.ptcompat',
8521.3.1 by Gary Poster
initial cut at getting Zope in buildout and out of sourcecode
67
        'zc.zservertracelog',
68
        'zope.app.appsetup',
69
        'zope.app.component',
70
        'zope.app.dav', # ./package-includes/dav-configure.zcml
71
        'zope.app.error',
72
        'zope.app.exception',
73
        'zope.app.file',
74
        'zope.app.form',
75
        'zope.app.pagetemplate',
76
        'zope.app.publication',
77
        'zope.app.publisher',
78
        'zope.app.security',
79
        'zope.app.securitypolicy',
80
        'zope.app.server',
81
        'zope.app.session',
82
        'zope.app.testing',
9678.4.26 by Barry Warsaw
Another cherrypick
83
        'zope.app.zcmlfiles',
8521.3.1 by Gary Poster
initial cut at getting Zope in buildout and out of sourcecode
84
        'zope.app.wsgi',
85
        'zope.app.zapi',
86
        'zope.contenttype',
87
        'zope.component[zcml]',
88
        'zope.datetime',
89
        'zope.thread',
90
        'zope.error',
91
        'zope.event',
92
        'zope.exceptions',
93
        'zope.formlib',
94
        'zope.i18n',
95
        'zope.interface',
8697.27.6 by Gary Poster
builds again; more test failures fixed.
96
        'zope.hookable', # indirect, via zope.app.component
8521.3.1 by Gary Poster
initial cut at getting Zope in buildout and out of sourcecode
97
        'zope.lifecycleevent',
98
        'zope.location',
99
        'zope.pagetemplate',
100
        'zope.publisher',
101
        'zope.proxy',
102
        'zope.schema',
103
        'zope.security',
104
        'zope.sendmail',
105
        'zope.server',
106
        'zope.session',
107
        'zope.tal',
108
        'zope.tales',
109
        'zope.testbrowser',
110
        'zope.testing',
111
        'zope.traversing',
8521.3.6 by Gary Poster
make run works again
112
        'zope.viewlet', # only fixing a broken dependency
8514.2.2 by Francis J. Lacoste
Add loggerhead dependencies.
113
        # Loggerhead dependencies. These should be removed once
114
        # bug 383360 is fixed and we include it as a source dist.
115
        'Paste',
116
        'PasteDeploy',
117
        'SimpleTal'
8329.1.4 by Gary Poster
respond to reviews; in particular, add doc.
118
    ],
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
119
    url='https://launchpad.net/',
120
    classifiers=[
121
        "Development Status :: 5 - Production/Stable",
122
        "Intended Audience :: Developers",
8329.1.4 by Gary Poster
respond to reviews; in particular, add doc.
123
        "Programming Language :: Python",
124
    ],
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
125
    extras_require=dict(
8329.1.4 by Gary Poster
respond to reviews; in particular, add doc.
126
        docs=[
127
            'Sphinx',
128
            'z3c.recipe.sphinxdoc',
129
        ]
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
130
    ),
131
    entry_points=dict(
8329.1.4 by Gary Poster
respond to reviews; in particular, add doc.
132
        console_scripts=[ # `console_scripts` is a magic name to setuptools
8357.5.2 by Gary Poster
incremental changes to using more eggs
133
            'apiindex = lp.scripts.utilities.apiindex:main',
8234.1.4 by Gary Poster
test works, nominally; and bin/py is a bit more functional. problems with import warnings are more serious because they cause tests to fail.
134
            'killservice = lp.scripts.utilities.killservice:main',
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
135
            'run = canonical.launchpad.scripts.runlaunchpad:start_launchpad',
136
            'harness = canonical.database.harness:python',
8502.2.3 by Gary Poster
make twistd available in the bin directory with the right paths
137
            'twistd = twisted.scripts.twistd:run',
8971.2.1 by Stuart Bishop
Add Librarian startup script
138
            'start_librarian '
139
                '= canonical.launchpad.scripts.runlaunchpad:start_librarian',
8234.1.2 by Gary Poster
checkpoint: this initial buildout variant has several parts working, including run, start, stop, and harness.
140
        ]
141
    ),
142
)