source: ldapplugin/0.11/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: 656 bytes
RevLine 
[245]1#!/usr/bin/env python
2
3from setuptools import setup, find_packages
4
5PACKAGE = 'LdapPlugin'
[5686]6VERSION = '0.6.0'
[245]7
8setup (
9    name = PACKAGE,
10    version = VERSION,
[5686]11    description = 'LDAP extensions for Trac 0.11',
[1610]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",
[5686]17    install_requires = [ 'Trac>=0.11', 'Trac<0.12'],
[245]18    packages = find_packages(exclude=['ez_setup', '*.tests*']),
19    package_data = { },
[1610]20    entry_points = {
21        'trac.plugins': [
22            'ldapplugin.api = ldapplugin.api',
23        ]
24    }
[245]25)
Note: See TracBrowser for help on using the repository browser.