From 1ea402ebdca2b1fb70811b41d15e2234b5330d48 Mon Sep 17 00:00:00 2001 From: coderanger Date: Wed, 22 Mar 2006 18:53:22 +0000 Subject: WikinfoPlugin: Switching to entry points. --- Wikinfo.egg-info/trac_plugin.txt | 1 - setup.py | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) delete mode 100644 Wikinfo.egg-info/trac_plugin.txt create mode 100644 setup.py diff --git a/Wikinfo.egg-info/trac_plugin.txt b/Wikinfo.egg-info/trac_plugin.txt deleted file mode 100644 index 034499a..0000000 --- a/Wikinfo.egg-info/trac_plugin.txt +++ /dev/null @@ -1 +0,0 @@ -wikinfo 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' + ] + } +) + -- cgit v1.2.3