3
# Copyright (C) 2008 Canonical Ltd.
4
# (Authored by Martin Albisetti <argentina@gmail.com>)
2
5
# This program is free software; you can redistribute it and/or modify
3
6
# it under the terms of the GNU General Public License as published by
4
7
# the Free Software Foundation; either version 2 of the License, or
13
16
# along with this program; if not, write to the Free Software
14
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
from setuptools import setup, find_packages
17
from turbogears.finddata import find_package_data
20
execfile(os.path.join("loggerhead", "release.py"))
27
description=description,
31
download_url=download_url,
33
maintainer="Michael Hudson",
34
maintainer_email="michael.hudson@canonical.com",
37
"TurboGears >= 1.0b1",
38
# for some reason, distutils can't find bzr.
41
scripts = ["start-loggerhead", "stop-loggerhead"],
43
packages=find_packages(),
44
package_data = find_package_data(where='loggerhead',
45
package='loggerhead'),
46
# data_files = find_package_data(where='loggerhead', package='loggerhead'),
51
'Development Status :: 3 - Alpha',
52
'Operating System :: OS Independent',
53
'Programming Language :: Python',
54
'Framework :: TurboGears',
55
'Framework :: TurboGears :: Applications',
57
test_suite = 'nose.collector',
19
"""Loggerhead is a web viewer for projects in bazaar"""
21
from setuptools import setup