root/timingandestimationplugin/branches/trac0.11/setup.py

Revision 4874, 1.6 kB (checked in by bobbysmith007, 1 month ago)

re #4141
re #4111

fixed stack overflow that was caused by a change in how INavigationProvider worked. This is now using genshi filters which should allow it to work a bit better (aka no stack overflow)

Line 
1 #!/usr/bin/env python
2
3 from setuptools import setup
4
5 PACKAGE = 'timingandestimationplugin'
6
7 setup(name=PACKAGE,
8       description='Plugin to make Trac support time estimation and tracking',
9       keywords='trac plugin estimation timetracking',
10       version='0.7.5',
11       url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin',
12       license='http://www.opensource.org/licenses/mit-license.php',
13       author='Russ Tyndall at Acceleration.net',
14       author_email='russ@acceleration.net',
15       long_description="""
16       This Trac 0.11 plugin provides support for Time estimation and tracking.
17
18       See http://trac-hacks.org/wiki/TimingAndEstimationPlugin for details.
19       """,
20       packages=[PACKAGE],
21       package_data={PACKAGE : ['templates/*.html', 'htdocs/*']},
22       entry_points={'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE)})
23
24
25 #### AUTHORS ####
26 ## Primary Author:
27 ## Russell Tyndall
28 ## Acceleration.net
29 ## russ@acceleration.net
30 ## trac-hacks user: bobbysmith007
31
32 ##
33
34 ## Alessio Massaro
35 ## trac-hacks user: masariello
36 ## Helped Get Reports working in postgres
37 ## and started moving toward generic work
38 ## rather than hours
39
40 ## kkurzweil@lulu.com
41 ## helped postegresql db backend compatiblity
42
43 ## jonas
44 ## made it so that base_url was unnecessary
45
46 ## Colin Guthrie
47 ## trac-hacks user: coling
48 ## Refactored the custom reports code to make it
49 ##  easy for other plugins to provide reports to
50 ##  compliment those provided by default
51 ## Added Javascript that improves Ticket UI
52
53 ## Dave Abrahams <dave@boost-consulting.com>
54 ##
55 ## Genshi filters to remove T&E reports from the
56 ## standard reports page, where they display errors
Note: See TracBrowser for help on using the browser.