Sha256: 5a86a2610c58d93f02624226c4608468e819426ad9bbacfd15c7625c9530a1ea
Contents?: true
Size: 548 Bytes
Versions: 4
Compression:
Stored size: 548 Bytes
Contents
#!/usr/bin/env python # -*- coding: iso-8859-1 -*- from setuptools import setup setup( name = 'EstimationTools', author = 'Joachim Hoessler', author_email = 'hoessler@gmail.com', description = 'Trac plugin for visualizing and quick editing of effort estimations', version = '0.4', license='BSD', packages=['estimationtools'], package_data = { 'estimationtools': ['htdocs/*.js', 'templates/*.html'] }, entry_points = { 'trac.plugins': [ 'estimationtools = estimationtools' ] } )
Version data entries
4 entries across 4 versions & 1 rubygems