Damn you, Unicode!
[supybot-shipping.git] / __init__.py
blobf03c2e8a7e0e66d7eec9fe930f8c546857e0d228
1 ###
2 # supybot-shipping - A Supybot plugin to track shipments
3 # Copyright (C) 2008 Ian Weller <ianweller@gmail.com>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 ###
20 """
21 Track shipments.
22 """
24 import supybot
25 import supybot.world as world
27 # Use this for the version of this plugin. You may wish to put a CVS keyword
28 # in here if you're keeping the plugin in CVS or some similar system.
29 __version__ = ""
31 # XXX Replace this with an appropriate author or supybot.Author instance.
32 __author__ = supybot.Author('Ian Weller', 'ianweller', 'ianweller@gmail.com')
34 # This is a dictionary mapping supybot.Author instances to lists of
35 # contributions.
36 __contributors__ = {}
38 # This is a url where the most recent plugin package can be downloaded.
39 __url__ = '' # 'http://supybot.com/Members/yourname/Shipping/download'
41 import config
42 import plugin
43 reload(plugin) # In case we're being reloaded.
44 # Add more reloads here if you add third-party modules and want them to be
45 # reloaded when this plugin is reloaded. Don't forget to import them as well!
47 if world.testing:
48 import test
50 Class = plugin.Class
51 configure = config.configure
54 # vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: