|
Revision 970, 0.7 kB
(checked in by mgood, 3 years ago)
|
AccountManagerPlugin:
removing svn:external for ez_setup (re #301)
|
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
|
|---|
| 3 |
from setuptools import setup |
|---|
| 4 |
|
|---|
| 5 |
setup( |
|---|
| 6 |
name = 'TracAccountManager', |
|---|
| 7 |
version = '0.1.2', |
|---|
| 8 |
author = 'Matthew Good', |
|---|
| 9 |
author_email = 'trac@matt-good.net', |
|---|
| 10 |
url = 'http://trac-hacks.swapoff.org/wiki/AccountManagerPlugin', |
|---|
| 11 |
description = 'User account management plugin for Trac', |
|---|
| 12 |
|
|---|
| 13 |
license = ''' |
|---|
| 14 |
"THE BEER-WARE LICENSE" (Revision 42): |
|---|
| 15 |
<trac@matt-good.net> wrote this file. As long as you retain this notice you |
|---|
| 16 |
can do whatever you want with this stuff. If we meet some day, and you think |
|---|
| 17 |
this stuff is worth it, you can buy me a beer in return. Matthew Good''', |
|---|
| 18 |
|
|---|
| 19 |
zip_safe=True, |
|---|
| 20 |
packages=['acct_mgr'], |
|---|
| 21 |
package_data={'acct_mgr': ['templates/*.cs']}) |
|---|