#!/usr/bin/env python # -*- coding: iso-8859-1 -*- from setuptools import setup setup( name = 'TracGitWeb', version = '1.0', packages = ['gitweb'], package_data = { 'gitweb': ['templates/*.html', 'htdocs/*.js', 'htdocs/*.css' ] }, author = 'Noah Kantrowitz', author_email = 'noah@coderanger.net', description = 'Embed gitweb in Trac in place of the Trac browser.', license = 'BSD', keywords = 'trac plugin', url = 'http://trac-hacks.org/wiki/GitWebPlugin', classifiers = [ 'Framework :: Trac', ], install_requires = ['Trac'], entry_points = { 'trac.plugins': [ 'gitweb.web_ui = gitweb.web_ui', ] }, )