-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (50 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
from setuptools import setup
PACKAGE = 'timingandestimationplugin'
setup(name=PACKAGE,
description='Plugin to make Trac support time estimation and tracking',
keywords='trac plugin estimation timetracking',
version='0.9.0',
url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin',
license='http://www.opensource.org/licenses/mit-license.php',
author='Russ Tyndall at Acceleration.net',
author_email='[email protected]',
long_description="""
This Trac 0.11 plugin provides support for Time estimation and tracking.
See http://trac-hacks.org/wiki/TimingAndEstimationPlugin for details.
""",
packages=[PACKAGE],
package_data={PACKAGE : ['templates/*.html', 'htdocs/*']},
entry_points={'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE)})
#### AUTHORS ####
## Primary Author:
## Russell Tyndall
## Acceleration.net
## trac-hacks user: bobbysmith007
##
## Alessio Massaro
## trac-hacks user: masariello
## Helped Get Reports working in postgres
## and started moving toward generic work
## rather than hours
## helped postegresql db backend compatiblity
## jonas
## made it so that base_url was unnecessary
## Colin Guthrie
## trac-hacks user: coling
## Refactored the custom reports code to make it
## easy for other plugins to provide reports to
## compliment those provided by default
## Added Javascript that improves Ticket UI
## Dave Abrahams <[email protected]>
##
## Genshi filters to remove T&E reports from the
## standard reports page, where they display errors
## Greg Troxel
##
## Updated the post commit hooks to be inline with upstream trac
## Tay Ray Chuan
##
## Added a stopwatch to the ticket pages