|
Revision 2462, 0.8 kB
(checked in by BladeHawke, 1 year ago)
|
AuthRequiredPlugin:
Removed spurious self.env.href() that caused redirection issues on trac installation not at root of vhost. (fixes #1771)
|
| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: iso-8859-1 -*- |
|---|
| 3 |
|
|---|
| 4 |
from setuptools import setup |
|---|
| 5 |
|
|---|
| 6 |
PACKAGE = 'TracAuthRequired' |
|---|
| 7 |
VERSION = '0.3.1' |
|---|
| 8 |
|
|---|
| 9 |
setup( |
|---|
| 10 |
name = PACKAGE, |
|---|
| 11 |
version = VERSION, |
|---|
| 12 |
|
|---|
| 13 |
author = "Anton Graham", |
|---|
| 14 |
author_email = "bladehawke@gmail.com", |
|---|
| 15 |
description = "A handler to redirect anonymous requests", |
|---|
| 16 |
long_description = """A handler for redirecting all anonymous requests to a\ |
|---|
| 17 |
form based authentication handler. Currently only\ |
|---|
| 18 |
supports AccounttManagerPlugin""", |
|---|
| 19 |
license = "BSD", |
|---|
| 20 |
keywords = "trac plugin authentication required acctmanager", |
|---|
| 21 |
url = "http://trac-hacks.org/wiki/AuthRequiredPlugin", |
|---|
| 22 |
|
|---|
| 23 |
packages = [ 'tracauthrequired' ], |
|---|
| 24 |
|
|---|
| 25 |
entry_points = {'trac.plugins': ['tracauthrequired = tracauthrequired']}, |
|---|
| 26 |
install_requires = [ 'tracaccountmanager' ] |
|---|
| 27 |
) |
|---|