-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
32 lines (31 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import find_packages, setup
setup(
name='TracCodeComments', version='1.2.0',
author='Nikolay Bachiyski, Thorsten Ott',
author_email='[email protected], [email protected]',
description='Tool for leaving inline code comments',
packages=find_packages(exclude=['*.tests*']),
entry_points={
'trac.plugins': [
'code_comments.comment = code_comments.comment',
'code_comments.comment_macro = code_comments.comment_macro',
'code_comments.comments = code_comments.comments',
'code_comments.db = code_comments.db',
'code_comments.notification = code_comments.notification',
'code_comments.subscription = code_comments.subscription',
'code_comments.ticket_event_listener = code_comments.ticket_event_listener',
'code_comments.web = code_comments.web',
],
},
package_data={
'code_comments': [
'templates/*.html',
'templates/*.txt',
'templates/js/*.html',
'htdocs/*.*',
'htdocs/jquery-ui/*.*',
'htdocs/jquery-ui/images/*.*',
'htdocs/sort/*.*',
],
},
)