#!/usr/bin/env python # -*- coding: iso-8859-1 -*- from setuptools import setup setup( name = 'RepoLink', version = '0.1', packages = ['repolink'], author = "Christer Weinigel", author_email = "christer@weinigel.se", description = "Show a link to the repository in the source browser", license = "BSD", keywords = "trac repolink", url = "http://zoo.weinigel.se/", entry_points = { 'trac.plugins': [ 'repolink.repolink = repolink.repolink' ] } )