|
Last change
on this file was
15675,
checked in by Ryan J Ollos, 7 years ago
|
|
0.7.0dev: Remove tag_svn_revision from setup.cfg
The attribute isn't supported in setuptools >= 10.
Also strip whitespace from source files.
|
-
Property svn:eol-style set to
native
|
|
File size:
642 bytes
|
| Rev | Line | |
|---|
| [245] | 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from setuptools import setup, find_packages |
|---|
| 4 | |
|---|
| 5 | PACKAGE = 'LdapPlugin' |
|---|
| [10934] | 6 | VERSION = '0.7.0' |
|---|
| [245] | 7 | |
|---|
| 8 | setup ( |
|---|
| 9 | name = PACKAGE, |
|---|
| 10 | version = VERSION, |
|---|
| [10934] | 11 | description = 'LDAP extensions for Trac 0.12', |
|---|
| [1610] | 12 | author = 'Emmanuel Blot', |
|---|
| 13 | author_email = 'emmanuel.blot@free.fr', |
|---|
| [15675] | 14 | license='BSD', |
|---|
| [1610] | 15 | url='http://trac-hacks.org/wiki/LdapPlugin', |
|---|
| 16 | keywords = "trac ldap permission group acl", |
|---|
| [13174] | 17 | install_requires = ['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.