1 # -*- coding: utf-8 -*-
3 from setuptools import setup, find_packages
4 from turbogears.finddata import find_package_data
7 execfile(os.path.join("monitorweb", "release.py"))
9 packages=find_packages()
10 package_data = find_package_data(where='monitorweb',
12 if os.path.isdir('locales'):
13 packages.append('locales')
14 package_data.update(find_package_data(where='locales',
15 exclude=('*.po',), only_in_packages=False))
20 # uncomment the following lines if you fill them out in release.py
21 #description=description,
25 #download_url=download_url,
29 "TurboGears >= 1.0.7",
35 package_data=package_data,
37 # Use keywords if you'll be adding your package to the
40 # if this has widgets, uncomment the next line
41 # 'turbogears.widgets',
43 # if this has a tg-admin command, uncomment the next line
44 # 'turbogears.command',
46 # if this has identity providers, uncomment the next line
47 # 'turbogears.identity.provider',
49 # If this is a template plugin, uncomment the next line
50 # 'python.templating.engines',
52 # If this is a full application, uncomment the next line
56 'Development Status :: 3 - Alpha',
57 'Operating System :: OS Independent',
58 'Programming Language :: Python',
59 'Topic :: Software Development :: Libraries :: Python Modules',
60 'Framework :: TurboGears',
61 # if this is an application that you'll distribute through
62 # the Cheeseshop, uncomment the next line
63 # 'Framework :: TurboGears :: Applications',
65 # if this is a package that includes widgets that you'll distribute
66 # through the Cheeseshop, uncomment the next line
67 # 'Framework :: TurboGears :: Widgets',
69 test_suite='nose.collector',
72 'start-monitorweb = monitorweb.commands:start',
75 # Uncomment next line and create a default.cfg file in your project dir
76 # if you want to package a default configuration in your egg.
77 #data_files = [('config', ['default.cfg'])],