sipb-www
/
snippets
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add my Trac zephyr plugin.
[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
)