From 81ff0d5781e1034f90d4557a1e4ad00d87332e58 Mon Sep 17 00:00:00 2001 From: oddluck Date: Thu, 5 Dec 2019 09:46:21 +0000 Subject: [PATCH] Initial commit. --- README.md => GolfScores/README.md | 0 __init__.py => GolfScores/__init__.py | 7 +++++-- config.py => GolfScores/config.py | 0 plugin.py => GolfScores/plugin.py | 0 GolfScores/requirements.txt | 2 ++ test.py => GolfScores/test.py | 0 6 files changed, 7 insertions(+), 2 deletions(-) rename README.md => GolfScores/README.md (100%) rename __init__.py => GolfScores/__init__.py (78%) rename config.py => GolfScores/config.py (100%) rename plugin.py => GolfScores/plugin.py (100%) create mode 100644 GolfScores/requirements.txt rename test.py => GolfScores/test.py (100%) diff --git a/README.md b/GolfScores/README.md similarity index 100% rename from README.md rename to GolfScores/README.md diff --git a/__init__.py b/GolfScores/__init__.py similarity index 78% rename from __init__.py rename to GolfScores/__init__.py index 0dc13ec..310350c 100644 --- a/__init__.py +++ b/GolfScores/__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/GolfScores/config.py similarity index 100% rename from config.py rename to GolfScores/config.py diff --git a/plugin.py b/GolfScores/plugin.py similarity index 100% rename from plugin.py rename to GolfScores/plugin.py diff --git a/GolfScores/requirements.txt b/GolfScores/requirements.txt new file mode 100644 index 0000000..92f1d59 --- /dev/null +++ b/GolfScores/requirements.txt @@ -0,0 +1,2 @@ +pendulum +requests \ No newline at end of file diff --git a/test.py b/GolfScores/test.py similarity index 100% rename from test.py rename to GolfScores/test.py