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

Revision 3256, 634 bytes checked in by moschny, 5 years ago (diff)
  • Make package build process independent of Trac (i.e. do not import the package in setup.py).
  • Also rename component to TracRedirect.
  • Property svn:executable set to *
Line 
1#!/usr/bin/python
2
3from setuptools import setup
4from redirect import __version__ as version
5
6setup(
7    name = 'TracRedirect',
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': ['TracRedirect = redirect.redirect']},
18    keywords = 'trac redirect',
19    license = 'GPL',
20)
Note: See TracBrowser for help on using the repository browser.