summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 1630b1ed05d90d9f98aef4a2e683f2ab124f0e97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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'
        ]
    }
)