From 9417cc1aa858f408afbd92ffef8139388cbedf7a Mon Sep 17 00:00:00 2001 From: oddluck Date: Thu, 5 Dec 2019 07:18:17 +0000 Subject: [PATCH] Initial commit. --- LICENSE => TVMaze/LICENSE | 0 README.md => TVMaze/README.md | 7 ++----- __init__.py => TVMaze/__init__.py | 4 +++- accountsdb.py => TVMaze/accountsdb.py | 0 config.py => TVMaze/config.py | 0 plugin.py => TVMaze/plugin.py | 0 requirements.txt => TVMaze/requirements.txt | 0 test.py => TVMaze/test.py | 0 8 files changed, 5 insertions(+), 6 deletions(-) rename LICENSE => TVMaze/LICENSE (100%) rename README.md => TVMaze/README.md (92%) rename __init__.py => TVMaze/__init__.py (86%) rename accountsdb.py => TVMaze/accountsdb.py (100%) rename config.py => TVMaze/config.py (100%) rename plugin.py => TVMaze/plugin.py (100%) rename requirements.txt => TVMaze/requirements.txt (100%) rename test.py => TVMaze/test.py (100%) diff --git a/LICENSE b/TVMaze/LICENSE similarity index 100% rename from LICENSE rename to TVMaze/LICENSE diff --git a/README.md b/TVMaze/README.md similarity index 92% rename from README.md rename to TVMaze/README.md index 0adb685..01a3aee 100644 --- a/README.md +++ b/TVMaze/README.md @@ -6,10 +6,7 @@ #### This plugin requires Python 3 and Limnoria -1. Clone this repository into your bot/plugins directory -``` -git clone --depth=1 https://gitlab.com/cottongin/TVMaze.git -``` +1. Install with PluginDownloader @install oddluck TVMaze 2. Install requirements for the plugin via pip ``` @@ -42,4 +39,4 @@ You can use @settvmazeoptions to save common command options to make using comma This stores settings per nick, you can clear them via --clear: ``` @settvmazeoptions --clear -``` \ No newline at end of file +``` diff --git a/__init__.py b/TVMaze/__init__.py similarity index 86% rename from __init__.py rename to TVMaze/__init__.py index 17d4fd1..ec5fd2e 100644 --- a/__init__.py +++ b/TVMaze/__init__.py @@ -20,13 +20,15 @@ __version__ = "" # XXX Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author('cottongin', 'cottongin', '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 # contributions. __contributors__ = {} # 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 plugin diff --git a/accountsdb.py b/TVMaze/accountsdb.py similarity index 100% rename from accountsdb.py rename to TVMaze/accountsdb.py diff --git a/config.py b/TVMaze/config.py similarity index 100% rename from config.py rename to TVMaze/config.py diff --git a/plugin.py b/TVMaze/plugin.py similarity index 100% rename from plugin.py rename to TVMaze/plugin.py diff --git a/requirements.txt b/TVMaze/requirements.txt similarity index 100% rename from requirements.txt rename to TVMaze/requirements.txt diff --git a/test.py b/TVMaze/test.py similarity index 100% rename from test.py rename to TVMaze/test.py