5
5
execfile(os.path.join("loggerhead", "release.py"))
12
description=description,
16
download_url=download_url,
18
maintainer="Michael Hudson",
19
maintainer_email="michael.hudson@canonical.com",
11
# uncomment the following lines if you fill them out in release.py
12
#description=description,
16
#download_url=download_url,
21
19
install_requires = [
22
20
"TurboGears >= 1.0b1",
23
# for some reason, distutils can't find bzr.
26
scripts = ["start-loggerhead.py", "stop-loggerhead.py"],
22
scripts = ["start-loggerhead.py"],
28
24
packages=find_packages(),
29
25
package_data = find_package_data(where='loggerhead',
30
26
package='loggerhead'),
31
# data_files = find_package_data(where='loggerhead', package='loggerhead'),
28
# Use keywords if you'll be adding your package to the
31
# if this has widgets, uncomment the next line
32
# 'turbogears.widgets',
34
# if this has a tg-admin command, uncomment the next line
35
# 'turbogears.command',
37
# if this has identity providers, uncomment the next line
38
# 'turbogears.identity.provider',
40
# If this is a template plugin, uncomment the next line
41
# 'python.templating.engines',
43
# If this is a full application, uncomment the next line
36
47
'Development Status :: 3 - Alpha',
37
48
'Operating System :: OS Independent',
38
49
'Programming Language :: Python',
50
'Topic :: Software Development :: Libraries :: Python Modules',
39
51
'Framework :: TurboGears',
40
'Framework :: TurboGears :: Applications',
52
# if this is an application that you'll distribute through
53
# the Cheeseshop, uncomment the next line
54
# 'Framework :: TurboGears :: Applications',
56
# if this is a package that includes widgets that you'll distribute
57
# through the Cheeseshop, uncomment the next line
58
# 'Framework :: TurboGears :: Widgets',
42
60
test_suite = 'nose.collector',