Initial commit.

This commit is contained in:
oddluck 2019-12-05 07:18:17 +00:00
parent 8aceab73f1
commit 9417cc1aa8
8 changed files with 5 additions and 6 deletions

View File

@ -6,10 +6,7 @@
#### This plugin requires Python 3 and Limnoria #### This plugin requires Python 3 and Limnoria
1. Clone this repository into your bot/plugins directory 1. Install with PluginDownloader @install oddluck TVMaze
```
git clone --depth=1 https://gitlab.com/cottongin/TVMaze.git
```
2. Install requirements for the plugin via pip 2. Install requirements for the plugin via pip
``` ```

View File

@ -20,13 +20,15 @@ __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('cottongin', 'cottongin', __author__ = supybot.Author('cottongin', 'cottongin',
'cottongin@cottongin.club') 'cottongin@cottongin.club')
__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__ = {} __contributors__ = {}
# 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://gitlab.com/cottongin/TVMaze' __url__ = 'https://github.com/oddluck/limnoria-plugins/'
from . import config from . import config
from . import plugin from . import plugin