-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 745 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
version='0.1.1'
setup(name='RepositoryHookSystem',
version=version,
description="plugin to make repository commit events iterable and accessible to other plugins",
author='Jeff Hammel',
author_email='jhammel@openplans.org',
url='http://trac-hacks.org/wiki/k0s',
keywords='trac plugin',
license="GPL",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']),
include_package_data=True,
package_data={'repository_hook_system': [ 'templates/*']},
zip_safe=False,
install_requires=['python-dateutil'],
entry_points = """
[trac.plugins]
repositoryhooksystem = repository_hook_system
""",
)