-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (30 loc) · 881 Bytes
/
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 setup
try:
long_description = open("README.txt").read()
except:
long_description = ''
try:
long_description += open("CHANGES.txt").read()
except:
pass
setup(name='trac-WorkflowNotificationPlugin',
version='0.7',
description="Configurable notifications for trac tickets tied to workflow actions",
long_description=long_description,
packages=['workflow_notification'],
package_data = {
'workflow_notification': [
'templates/*.html',
'templates/*.txt',
],
},
author='Ethan Jucovy',
author_email='[email protected]',
url="https://trac-hacks.org/wiki/WorkflowNotificationPlugin",
license='BSD',
entry_points = {
'trac.plugins':
['workflow_notification = workflow_notification']
},
zip_safe=False,
)