]> sipb.mit.edu Git - snippets/.git/blob - TracZephyrPlugin/setup.py
Send messages 'remotely' (to localhost), to work around growl bug #267767
[snippets/.git] / TracZephyrPlugin / setup.py
1 #!/usr/bin/python
2
3 from setuptools import find_packages, setup
4
5 setup(
6     name='TracZephyrPlugin',
7     version='1.2',
8     author='Evan Broder',
9     author_email='broder@mit.edu',
10     description='Send a zephyr when a Trac ticket is created or updated',
11     py_modules=["ZephyrPlugin"],
12     entry_points = """
13         [trac.plugins]
14         ZephyrPlugin = ZephyrPlugin
15     """,
16 )