diff options
author | coderanger <coderanger@7322e99d-02ea-0310-aa39-e9a107903beb> | 2006-03-22 18:53:22 +0000 |
---|---|---|
committer | coderanger <coderanger@7322e99d-02ea-0310-aa39-e9a107903beb> | 2006-03-22 18:53:22 +0000 |
commit | 1ea402ebdca2b1fb70811b41d15e2234b5330d48 (patch) | |
tree | b453d213315b8c768c7a7e4b043ca100dd9c5f2c /setup.py | |
parent | e431d2d4e4df7d84be42983522fb330f407c7427 (diff) | |
download | wikinfo-1ea402ebdca2b1fb70811b41d15e2234b5330d48.tar.gz wikinfo-1ea402ebdca2b1fb70811b41d15e2234b5330d48.tar.xz wikinfo-1ea402ebdca2b1fb70811b41d15e2234b5330d48.zip |
WikinfoPlugin:
Switching to entry points.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ebd1831 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: iso-8859-1 -*- + +from setuptools import setup + +setup( + name = 'Wikinfo', + version = '0.1', + packages = ['wikinfo'], + package_data = { }, + + author = "Noah Kantrowitz", + author_email = "coderanger@yahoo.com", + 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' + ] + } +) + |