-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (60 loc) · 2.12 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
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python
from setuptools import setup
PACKAGE = 'timingandestimationplugin'
setup(name='EduTracTimingAndEstimation',
description='Plugin to make EduTrac support time estimation and tracking',
keywords='trac plugin estimation timetracking',
version='1.2.7b',
url='http://www.trac-hacks.org/wiki/TimingAndEstimationPlugin',
license='MIT',
author='Russ Tyndall at Acceleration.net',
author_email='[email protected]',
long_description="""
This Trac 0.12 plugin provides support for Time estimation and tracking,
and permissions to view and set those fields
See http://trac-hacks.org/wiki/TimingAndEstimationPlugin for details.
""",
packages=[PACKAGE],
package_data={PACKAGE : ['templates/*.html', 'htdocs/js/*', 'htdocs/*.css', 'htdocs/*.js']},
entry_points={'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE)})
#### FINANCIAL CONTRIBUTERS ####
#
# Obsidian Software: http://www.obsidiansoft.com/
# Enterprise Solutions for Functional Processor
# Design Verification
#
################################
#### 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
## Josh Godsiff, for www.oxideinteractive.com.au
## added props table client reformatting to remove extra whitespace