|
Revision 4493, 0.9 kB
(checked in by clp, 3 months ago)
|
Version 0.31
- Add user filter option for Active Directory Compatibility
|
- Property svn:mime-type set to
text/plain
|
| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: utf-8 -*- |
|---|
| 3 |
''' |
|---|
| 4 |
Copyright (C) 2008 General de Software de Canarias. |
|---|
| 5 |
|
|---|
| 6 |
Author: Carlos López Pérez <carlos.lopezperez@gmail.com> |
|---|
| 7 |
''' |
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
from setuptools import setup |
|---|
| 11 |
|
|---|
| 12 |
PACKAGE = 'AccountLDAPPlugin' |
|---|
| 13 |
VERSION = '0.31' |
|---|
| 14 |
|
|---|
| 15 |
setup( |
|---|
| 16 |
name = 'AccountLDAP', |
|---|
| 17 |
version = VERSION, |
|---|
| 18 |
author = "Carlos López Pérez", |
|---|
| 19 |
author_email = "carlos.lopezperez@gmail.com", |
|---|
| 20 |
url = "http://trac-hacks.org/wiki/AccountLDAP", |
|---|
| 21 |
|
|---|
| 22 |
description = "Integrate account trac user with properties defined in LDAP.", |
|---|
| 23 |
long_description = "Integrate account trac user with properties defined in LDAP.", |
|---|
| 24 |
|
|---|
| 25 |
license = "LGPL", |
|---|
| 26 |
keywords = "trac plugin ldap account", |
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
packages = ['accountldap'], |
|---|
| 30 |
package_data= {'accountldap': ['templates/*.html']}, |
|---|
| 31 |
|
|---|
| 32 |
entry_points = """ |
|---|
| 33 |
[trac.plugins] |
|---|
| 34 |
%s = accountldap |
|---|
| 35 |
""" % PACKAGE, |
|---|
| 36 |
) |
|---|