# -*- coding: utf-8 -*- from setuptools import find_packages, setup setup( name='Agile-Trac', version='0.5.0', author = 'ja11sop', author_email = 'ja11sop@agile-trac.org', url = 'http://www.agile-trac.org/', description = 'A plugin for Trac that adds Iterations, Relative Sizing and User Stories', license = 'Boost Software License, Version 1.0. http://www.boost.org/LICENSE_1_0.txt', packages = ['agiletrac', 'agiletrac.db'], package_data = {'agiletrac' : ['conf/*.ini']}, entry_points = {'trac.plugins': [ 'AgileTrac.env = agiletrac.env', 'AgileTrac.api = agiletrac.api', 'AgileTrac.workflow = agiletrac.workflow', ] }, install_requires = ['Trac==0.11', 'Genshi>=0.5'], keywords = 'trac agile iteration relative sizing userstory release planning' )