| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: iso-8859-1 -*- |
|---|
| 3 |
|
|---|
| 4 |
from setuptools import setup |
|---|
| 5 |
|
|---|
| 6 |
setup( |
|---|
| 7 |
name = 'TracAddCommentMacro', |
|---|
| 8 |
version = '0.2', |
|---|
| 9 |
packages = ['addcomment'], |
|---|
| 10 |
package_data={ 'addcomment' : [ ] }, |
|---|
| 11 |
author = "Alec Thomas", |
|---|
| 12 |
description = "Macro to add comments to a wiki page.", |
|---|
| 13 |
license = "BSD", |
|---|
| 14 |
keywords = "trac plugin macro comments", |
|---|
| 15 |
url = "http://trac-hacks.org/wiki/AddCommentMacro", |
|---|
| 16 |
classifiers = [ |
|---|
| 17 |
'Framework :: Trac', |
|---|
| 18 |
], |
|---|
| 19 |
|
|---|
| 20 |
entry_points = { |
|---|
| 21 |
'trac.plugins': [ |
|---|
| 22 |
'addcomment.macro = addcomment.macro', |
|---|
| 23 |
], |
|---|
| 24 |
}, |
|---|
| 25 |
|
|---|
| 26 |
install_requires = [ 'TracMacroPost' ], |
|---|
| 27 |
) |
|---|