update author/maintainer data

This commit is contained in:
Gordon Shumway 2019-12-04 01:36:47 -05:00 committed by GitHub
parent ae490efbaa
commit b0910a6f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
### ###
# Copyright (c) 2010, quantumlemur # Copyright (c) 2019, oddluck
# All rights reserved. # All rights reserved.
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -41,18 +41,19 @@ import supybot.world as world
__version__ = "" __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.Author('quantumlemur', 'quantumlemur', __author__ = supybot.Author('oddluck', 'oddluck',
'quantumlemur@users.sourceforge.net') 'oddluck@riseup.net')
__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.
if not hasattr(supybot.authors, 'progval'): if not hasattr(supybot.authors, 'progval') or hasattr(supybot.authors, 'quantumlemur'):
supybot.authors.progval = supybot.Author('Valentin Lorentz', 'ProgVal', supybot.authors.progval = supybot.Author('Valentin Lorentz', 'ProgVal',
'progval@gmail.com') 'progval@gmail.com')
__contributors__ = {supybot.authors.progval: ['code enhancement'], supybot.authors.quantumlemur = supybot.Author('quantumlemur', 'quantumlemur',
__maintainer__: ['Jeopardy! stuff', 'lots more']} 'quantumlemur@users.sourceforge.net')
__contributors__ = {supybot.authors.quantumlemur: ['original plugin base']
supybot.authors.progval: ['code enhancement'],
__author__: ['Jeopardy! stuff', 'lots more']}
# 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/oddluck/limnoria-plugins/' __url__ = 'https://github.com/oddluck/limnoria-plugins/'