diff --git a/LICENSE.txt b/CBBScores/LICENSE.txt similarity index 100% rename from LICENSE.txt rename to CBBScores/LICENSE.txt diff --git a/README.md b/CBBScores/README.md similarity index 100% rename from README.md rename to CBBScores/README.md diff --git a/__init__.py b/CBBScores/__init__.py similarity index 78% rename from __init__.py rename to CBBScores/__init__.py index ef4d39e..1b17752 100644 --- a/__init__.py +++ b/CBBScores/__init__.py @@ -18,14 +18,17 @@ from supybot import world __version__ = "" # XXX Replace this with an appropriate author or supybot.Author instance. -__author__ = supybot.authors.unknown +__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__ = '' +__url__ = 'https://github.com/oddluck/limnoria-plugins/' from . import config from . import plugin diff --git a/config.py b/CBBScores/config.py similarity index 100% rename from config.py rename to CBBScores/config.py diff --git a/plugin.py b/CBBScores/plugin.py similarity index 100% rename from plugin.py rename to CBBScores/plugin.py diff --git a/CBBScores/requirements.txt b/CBBScores/requirements.txt new file mode 100644 index 0000000..92f1d59 --- /dev/null +++ b/CBBScores/requirements.txt @@ -0,0 +1,2 @@ +pendulum +requests \ No newline at end of file diff --git a/test.py b/CBBScores/test.py similarity index 100% rename from test.py rename to CBBScores/test.py