source: trac/plugins/redirect-0.11/setup.py @ 3246

Revision 3098, 621 bytes checked in by moschny, 7 years ago (diff)

Convert the redirect macro into a plugin.

Thanks to Michel Jouvin (jouvin AT lal DOT in2p3 DOT fr) for this
initial version!

  • Property svn:executable set to *
Line 
1#!/usr/bin/python
2
3from setuptools import setup
4from redirect.redirect import __version__ as version
5
6setup(
7    name = 'Redirect',
8    version = version,
9    packages = ['redirect'],
10    package_data = { 'redirect': ['htdocs/css/*.css'] },
11    author = 'Bernhard Haumacher',
12    author_email = 'haui@haumacher.de',
13    maintainer = 'Thomas Moschny',
14    maintainer_email = 'moschny@ipd.uni-karlsruhe.de',
15    url = 'http://svn.ipd.uka.de/trac/javaparty/wiki/TracNav',
16    description = 'Redirection for Trac',
17    entry_points={'trac.plugins': ['Redirect = redirect']},
18    keywords = 'trac toc',
19    license = 'GPL',
20)
Note: See TracBrowser for help on using the repository browser.