Sha256: fe12199e9e8c77598769a723d0415ed761aaf8fdbef5714c5a2353bfc0d27593

Contents?: true

Size: 2 KB

Versions: 4

Compression:

Stored size: 2 KB

Contents

#!/usr/bin/env python

from setuptools import setup

PACKAGE = 'timingandestimationplugin'

setup(name=PACKAGE,
      description='Plugin to make Trac support time estimation and tracking with permissions',
      keywords='trac plugin estimation timetracking permissions',
      version='0.7.8',
      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='russ@acceleration.net',
      long_description="""
      This Trac 0.11 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
## russ@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

## kkurzweil@lulu.com
## 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 <dave@boost-consulting.com>
##
## 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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
keithsalisbury-subtrac-0.1.1 lib/subtrac/trac-plugins/timingandestimationplugin/setup.py
keithsalisbury-subtrac-0.1.2 lib/subtrac/trac-plugins/timingandestimationplugin/setup.py
keithsalisbury-subtrac-0.1.3 lib/subtrac/trac-plugins/timingandestimationplugin/setup.py
keithsalisbury-subtrac-0.1.4 lib/subtrac/trac-plugins/timingandestimationplugin/setup.py