source: ldapplugin/0.10/setup.py

Last change on this file was 16527, checked in by Ryan J Ollos, 6 years ago

Fix indentation

  • Property svn:eol-style set to native
File size: 603 bytes
RevLine 
[245]1#!/usr/bin/env python
2
3from setuptools import setup, find_packages
4
5PACKAGE = 'LdapPlugin'
[1610]6VERSION = '0.5.1'
[245]7
8setup (
9    name = PACKAGE,
10    version = VERSION,
[1610]11    description = 'LDAP extensions for Trac 0.10',
12    author = 'Emmanuel Blot',
13    author_email = 'emmanuel.blot@free.fr',
[16527]14    license='BSD',
[1610]15    url='http://trac-hacks.org/wiki/LdapPlugin',
16    keywords = "trac ldap permission group acl",
[245]17    packages = find_packages(exclude=['ez_setup', '*.tests*']),
18    package_data = { },
[1610]19    entry_points = {
20        'trac.plugins': [
21            'ldapplugin.api = ldapplugin.api',
22        ]
23    }
[245]24)
Note: See TracBrowser for help on using the repository browser.