Give Pokedex plugin its own whoosh index.
[zzz-dywypi.git] / plugins / Pokedex / __init__.py
index d25615c..d1482f5 100644 (file)
@@ -1,3 +1,4 @@
+# encoding: utf8
 ###
 # Copyright (c) 2010, Alex Munroe
 # All rights reserved.
@@ -29,8 +30,7 @@
 ###
 
 """
-Add a description of the plugin (to be presented to the user inside the wizard)
-here.  This should describe *what* the plugin does.
+Provides a Pokédex lookup interface.
 """
 
 import supybot
@@ -38,17 +38,17 @@ import supybot.world as world
 
 # Use this for the version of this plugin.  You may wish to put a CVS keyword
 # in here if you're keeping the plugin in CVS or some similar system.
-__version__ = ""
+__version__ = "0.1"
 
 # XXX Replace this with an appropriate author or supybot.Author instance.
-__author__ = supybot.authors.unknown
+__author__ = supybot.Author('Alex Munroe', 'Eevee', 'git@veekun.com')
 
 # This is a dictionary mapping supybot.Author instances to lists of
 # contributions.
 __contributors__ = {}
 
 # This is a url where the most recent plugin package can be downloaded.
-__url__ = '' # 'http://supybot.com/Members/yourname/Pokedex/download'
+__url__ = 'http://git.veekun.com/?p=dywypi.git;a=summary'
 
 import config
 import plugin