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