Add support for logfiles to contain dicts with the follow option
[buildbot.git] / contrib / trac / setup.py
blobf9f6354d99459525cd9180c53213410bb93ca82b
1 from setuptools import setup
3 from bbwatcher import __version__
5 setup(
6 name='Trac-BuildBot-Watcher',
7 version=__version__,
8 packages=['bbwatcher'],
9 package_data={
10 'bbwatcher': ['htdocs/*', 'templates/*.html'],
12 author='Randall Bosetti',
13 description='A plugin to fetch/integrate status updates from the BuildBot XML-RPC interface',
14 license='GPL',
15 entry_points={
16 'trac.plugins': 'bbwatcher.web_ui=bbwatcher.web_ui',