blob: 1630b1ed05d90d9f98aef4a2e683f2ab124f0e97 (
plain) (
tree)
|
|
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
from setuptools import setup
setup(
name = 'Wikinfo',
version = '2.2',
packages = ['wikinfo'],
package_data = { },
author = "Noah Kantrowitz, Alexander Sulfrian",
author_email = "noah@coderanger.net, alexander@sulfrian.net",
description = "Provides a few useful macros to get data about wiki pages",
license = "BSD",
keywords = "trac wiki info macro",
url = "http://trac-hacks.org/",
entry_points = {
'trac.plugins': [
'wikinfo.wikinfo = wikinfo.wikinfo'
]
}
)
|