| 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.4', |
|---|
| 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.10 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/*.cs', '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 |
|---|