~m4v/+junk/Urldb

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Elián Hanisch
  • Date: 2010-08-17 21:38:55 UTC
  • Revision ID: lambdae2@gmail.com-20100817213855-qpgh7sh5dnnm7jrk
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Encoding: UTF-8 -*-
 
2
###
 
3
# Copyright (c) 2010, Elián Hanisch
 
4
# All rights reserved.
 
5
#
 
6
#
 
7
###
 
8
 
 
9
"""
 
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.
 
12
"""
 
13
 
 
14
import supybot
 
15
import supybot.world as world
 
16
 
 
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.
 
19
__version__ = ""
 
20
 
 
21
# XXX Replace this with an appropriate author or supybot.Author instance.
 
22
__author__ = supybot.authors.unknown
 
23
 
 
24
# This is a dictionary mapping supybot.Author instances to lists of
 
25
# contributions.
 
26
__contributors__ = {}
 
27
 
 
28
# This is a url where the most recent plugin package can be downloaded.
 
29
__url__ = '' # 'http://supybot.com/Members/yourname/Urldb/download'
 
30
 
 
31
import config
 
32
import plugin
 
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!
 
36
 
 
37
if world.testing:
 
38
    import test
 
39
 
 
40
Class = plugin.Class
 
41
configure = config.configure
 
42
 
 
43
 
 
44
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: