3
# Copyright 2009 Canonical Ltd. All rights reserved.
6
ez_setup.use_setuptools()
9
from setuptools import setup, find_packages
16
packages=find_packages('lib'),
17
package_dir={'':'lib'},
18
include_package_data=True,
20
maintainer='Launchpad Developers',
21
description=('A unique collaboration and Bazaar code hosting platform '
22
'for software projects.'),
28
url='https://launchpad.net/',
30
"Development Status :: 5 - Production/Stable",
31
"Intended Audience :: Developers",
32
"Programming Language :: Python"],
35
'z3c.recipe.sphinxdoc']
38
console_scripts=[ # `console_scripts` is a magic name to zc.buildout
39
'killservice = lp.scripts.utilities.killservice:script',
40
'run = canonical.launchpad.scripts.runlaunchpad:start_launchpad',
41
'harness = canonical.database.harness:python',