Initial commit.
This commit is contained in:
parent
53b4a14e0b
commit
34f9d90677
|
@ -29,7 +29,7 @@
|
||||||
###
|
###
|
||||||
|
|
||||||
"""
|
"""
|
||||||
NBA: Get scores from NBA.com
|
NHLScores: Get NHL scores
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import supybot
|
import supybot
|
||||||
|
@ -37,17 +37,25 @@ import supybot.world as world
|
||||||
|
|
||||||
# Use this for the version of this plugin. You may wish to put a CVS keyword
|
# 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.
|
# in here if you're keeping the plugin in CVS or some similar system.
|
||||||
__version__ = "0.1"
|
__version__ = ""
|
||||||
|
|
||||||
# XXX Replace this with an appropriate author or supybot.Author instance.
|
# XXX Replace this with an appropriate author or supybot.Author instance.
|
||||||
__author__ = supybot.authors.unknown
|
__author__ = supybot.Author('Santiago Gil', 'santigl', '')
|
||||||
|
__maintainer__ = getattr(supybot.authors, 'oddluck',
|
||||||
|
supybot.Author('oddluck', 'oddluck', 'oddluck@riseup.net'))
|
||||||
|
|
||||||
# This is a dictionary mapping supybot.Author instances to lists of
|
# This is a dictionary mapping supybot.Author instances to lists of
|
||||||
# contributions.
|
# contributions.
|
||||||
__contributors__ = {}
|
if not hasattr(supybot.authors, 'cottongin') or not hasattr(supybot.authors, 'santigl'):
|
||||||
|
supybot.authors.cottongin = supybot.Author('cottongin', 'cottongin',
|
||||||
|
'cottongin@cottongin.club')
|
||||||
|
supybot.authors.santigl = supybot.Author('Santiago Gil', 'santigl', '')
|
||||||
|
|
||||||
|
__contributors__ = {supybot.authors.santigl: ['original plugin base'],
|
||||||
|
supybot.authors.cottongin: ['code enhancement']}
|
||||||
|
|
||||||
# This is a url where the most recent plugin package can be downloaded.
|
# This is a url where the most recent plugin package can be downloaded.
|
||||||
__url__ = 'https://github.com/santigl/limnoria-nba'
|
__url__ = 'https://github.com/oddluck/limnoria-plugins/'
|
||||||
|
|
||||||
from . import config
|
from . import config
|
||||||
from . import plugin
|
from . import plugin
|
|
@ -0,0 +1,3 @@
|
||||||
|
pytz
|
||||||
|
pendulum
|
||||||
|
requests
|
Loading…
Reference in New Issue