1
# -*- Encoding: UTF-8 -*-
3
# Copyright (c) 2010, Elián Hanisch
10
Add a description of the plugin (to be presented to the user inside the wizard)
11
here. This should describe *what* the plugin does.
15
import supybot.world as world
17
# Use this for the version of this plugin. You may wish to put a CVS keyword
18
# in here if you're keeping the plugin in CVS or some similar system.
21
# XXX Replace this with an appropriate author or supybot.Author instance.
22
__author__ = supybot.authors.unknown
24
# This is a dictionary mapping supybot.Author instances to lists of
28
# This is a url where the most recent plugin package can be downloaded.
29
__url__ = '' # 'http://supybot.com/Members/yourname/Urldb/download'
33
reload(plugin) # In case we're being reloaded.
34
# Add more reloads here if you add third-party modules and want them to be
35
# reloaded when this plugin is reloaded. Don't forget to import them as well!
41
configure = config.configure
44
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: