|
Revision 2897, 0.5 kB
(checked in by Rottenchester, 1 year ago)
|
Initial Import
|
| Line | |
|---|
| 1 |
from setuptools import setup |
|---|
| 2 |
|
|---|
| 3 |
setup( |
|---|
| 4 |
author = 'RottenChester', |
|---|
| 5 |
author_email = 'rottenchester@gmail.com', |
|---|
| 6 |
url = 'http://trac-hacks.org/wiki/AddressPlugin', |
|---|
| 7 |
license = 'bsd', |
|---|
| 8 |
name='TracAddressMacro', |
|---|
| 9 |
version='0.1', |
|---|
| 10 |
packages=['address'], |
|---|
| 11 |
package_data={ 'address': [ ]}, |
|---|
| 12 |
description="Macro to render maps of addresses embedded in pages", |
|---|
| 13 |
classifiers = [ |
|---|
| 14 |
'Framework :: Trac', |
|---|
| 15 |
], |
|---|
| 16 |
entry_points = { |
|---|
| 17 |
'trac.plugins': [ |
|---|
| 18 |
'address.macro = address.macro', |
|---|
| 19 |
], |
|---|
| 20 |
} |
|---|
| 21 |
) |
|---|
| 22 |
|
|---|