From bb660d5fca365fe08e9f7857242bc60d49b51168 Mon Sep 17 00:00:00 2001 From: Georg Date: Tue, 30 Aug 2022 21:18:54 +0000 Subject: [PATCH] Bulk add `setup.py` files + repair empty `__maintainer__` lines (#48) * Add missing setup.py's Signed-off-by: Georg Pfuetzenreuter * Repair __maintainer__'s Signed-off-by: Georg Pfuetzenreuter * Add requirements Signed-off-by: Georg Pfuetzenreuter Signed-off-by: Georg Pfuetzenreuter --- AzuraCast/setup.py | 8 ++++++++ Azure/__init__.py | 2 +- Azure/setup.py | 8 ++++++++ BotLibre/setup.py | 8 ++++++++ CAH/setup.py | 5 +++++ CBB/setup.py | 9 +++++++++ CFB/setup.py | 10 ++++++++++ Cayenne/setup.py | 8 ++++++++ Cobe/setup.py | 5 +++++ Corona/__init__.py | 2 +- Corona/setup.py | 9 +++++++++ CoronaLight/__init__.py | 2 +- CoronaLight/setup.py | 8 ++++++++ Dice/setup.py | 9 +++++++++ DuckHunt/setup.py | 5 +++++ Fun/setup.py | 9 +++++++++ Geo/setup.py | 8 ++++++++ GoogleCloud/__init__.py | 2 +- GoogleCloud/setup.py | 8 ++++++++ HuntNFish/setup.py | 5 +++++ IMDb/setup.py | 5 +++++ Jeopardy/setup.py | 13 +++++++++++++ Lyrics/setup.py | 8 ++++++++ NBA/setup.py | 8 ++++++++ NFL/setup.py | 9 +++++++++ NHL/setup.py | 9 +++++++++ Odds/setup.py | 9 +++++++++ PGA/setup.py | 9 +++++++++ Soccer/setup.py | 9 +++++++++ TVMaze/setup.py | 9 +++++++++ TextAdventures/setup.py | 8 ++++++++ TextArt/setup.py | 13 +++++++++++++ TimeBomb/setup.py | 5 +++++ Trackers/setup.py | 5 +++++ TriviaTime/setup.py | 5 +++++ Tweety/setup.py | 9 +++++++++ UNO/setup.py | 5 +++++ Undercut/setup.py | 5 +++++ UndernetX/setup.py | 5 +++++ Unicode/setup.py | 5 +++++ UrbanDictionary/setup.py | 5 +++++ Weed/setup.py | 8 ++++++++ WolframAlpha/setup.py | 5 +++++ WordGames/setup.py | 5 +++++ WorldTime/setup.py | 8 ++++++++ YouTube/__init__.py | 2 +- YouTube/setup.py | 5 +++++ 47 files changed, 316 insertions(+), 5 deletions(-) create mode 100644 AzuraCast/setup.py create mode 100644 Azure/setup.py create mode 100644 BotLibre/setup.py create mode 100644 CAH/setup.py create mode 100644 CBB/setup.py create mode 100644 CFB/setup.py create mode 100644 Cayenne/setup.py create mode 100644 Cobe/setup.py create mode 100644 Corona/setup.py create mode 100644 CoronaLight/setup.py create mode 100644 Dice/setup.py create mode 100644 DuckHunt/setup.py create mode 100644 Fun/setup.py create mode 100644 Geo/setup.py create mode 100644 GoogleCloud/setup.py create mode 100644 HuntNFish/setup.py create mode 100644 IMDb/setup.py create mode 100644 Jeopardy/setup.py create mode 100644 Lyrics/setup.py create mode 100644 NBA/setup.py create mode 100644 NFL/setup.py create mode 100644 NHL/setup.py create mode 100644 Odds/setup.py create mode 100644 PGA/setup.py create mode 100644 Soccer/setup.py create mode 100644 TVMaze/setup.py create mode 100644 TextAdventures/setup.py create mode 100644 TextArt/setup.py create mode 100644 TimeBomb/setup.py create mode 100644 Trackers/setup.py create mode 100644 TriviaTime/setup.py create mode 100644 Tweety/setup.py create mode 100644 UNO/setup.py create mode 100644 Undercut/setup.py create mode 100644 UndernetX/setup.py create mode 100644 Unicode/setup.py create mode 100644 UrbanDictionary/setup.py create mode 100644 Weed/setup.py create mode 100644 WolframAlpha/setup.py create mode 100644 WordGames/setup.py create mode 100644 WorldTime/setup.py create mode 100644 YouTube/setup.py diff --git a/AzuraCast/setup.py b/AzuraCast/setup.py new file mode 100644 index 0000000..72f180b --- /dev/null +++ b/AzuraCast/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'AzuraCast', + install_requires=[ + 'requests', + ], +) diff --git a/Azure/__init__.py b/Azure/__init__.py index 4cf49ef..59ec455 100644 --- a/Azure/__init__.py +++ b/Azure/__init__.py @@ -41,7 +41,7 @@ __version__ = "2020.02.24+git" # XXX Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author("oddluck", "oddluck", "oddluck@riseup.net") -__maintainer__ = {} +__maintainer__ = supybot.authors.unknown # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/Azure/setup.py b/Azure/setup.py new file mode 100644 index 0000000..a3fa779 --- /dev/null +++ b/Azure/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Azure', + install_requires=[ + 'requests', + ], +) diff --git a/BotLibre/setup.py b/BotLibre/setup.py new file mode 100644 index 0000000..5bebebf --- /dev/null +++ b/BotLibre/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'BotLibre', + install_requires=[ + 'requests', + ], +) diff --git a/CAH/setup.py b/CAH/setup.py new file mode 100644 index 0000000..dbb5a1f --- /dev/null +++ b/CAH/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'CAH', +) diff --git a/CBB/setup.py b/CBB/setup.py new file mode 100644 index 0000000..71501c8 --- /dev/null +++ b/CBB/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'CBB', + install_requires=[ + 'pendulum', + 'requests', + ], +) diff --git a/CFB/setup.py b/CFB/setup.py new file mode 100644 index 0000000..50e3a34 --- /dev/null +++ b/CFB/setup.py @@ -0,0 +1,10 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'CFB', + install_requires=[ + 'beautifulsoup4', + 'pendulum', + 'requests', + ], +) diff --git a/Cayenne/setup.py b/Cayenne/setup.py new file mode 100644 index 0000000..8389fa0 --- /dev/null +++ b/Cayenne/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Cayenne', + install_requires=[ + 'requests', + ], +) diff --git a/Cobe/setup.py b/Cobe/setup.py new file mode 100644 index 0000000..d56bbce --- /dev/null +++ b/Cobe/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Cobe', +) diff --git a/Corona/__init__.py b/Corona/__init__.py index 67d83c9..0279271 100644 --- a/Corona/__init__.py +++ b/Corona/__init__.py @@ -42,7 +42,7 @@ __version__ = "2020.02.24+git" # XXX Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author("oddluck", "oddluck", "oddluck@riseup.net") -__maintainer__ = {} +__maintainer__ = supybot.authors.unknown # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/Corona/setup.py b/Corona/setup.py new file mode 100644 index 0000000..d98dd00 --- /dev/null +++ b/Corona/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Corona', + install_requires=[ + 'beautifulsoup4', + 'requests', + ], +) diff --git a/CoronaLight/__init__.py b/CoronaLight/__init__.py index 0c760c4..33783ab 100644 --- a/CoronaLight/__init__.py +++ b/CoronaLight/__init__.py @@ -42,7 +42,7 @@ __version__ = "2020.02.24+git" # XXX Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author("oddluck", "oddluck", "oddluck@riseup.net") -__maintainer__ = {} +__maintainer__ = supybot.authors.unknown # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/CoronaLight/setup.py b/CoronaLight/setup.py new file mode 100644 index 0000000..dd5dc2c --- /dev/null +++ b/CoronaLight/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'CoronaLight', + install_requires=[ + 'requests', + ], +) diff --git a/Dice/setup.py b/Dice/setup.py new file mode 100644 index 0000000..e22fd09 --- /dev/null +++ b/Dice/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Dice', + install_requires=[ + 'pylint', + 'pytest', + ], +) diff --git a/DuckHunt/setup.py b/DuckHunt/setup.py new file mode 100644 index 0000000..e833754 --- /dev/null +++ b/DuckHunt/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'DuckHunt', +) diff --git a/Fun/setup.py b/Fun/setup.py new file mode 100644 index 0000000..d22b275 --- /dev/null +++ b/Fun/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Fun', + install_requires=[ + 'beautifulsoup4', + 'requests', + ], +) diff --git a/Geo/setup.py b/Geo/setup.py new file mode 100644 index 0000000..c079fcd --- /dev/null +++ b/Geo/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Geo', + install_requires=[ + 'geoip2', + ], +) diff --git a/GoogleCloud/__init__.py b/GoogleCloud/__init__.py index 2064d11..c8e30cf 100644 --- a/GoogleCloud/__init__.py +++ b/GoogleCloud/__init__.py @@ -41,7 +41,7 @@ __version__ = "2020.02.24+git" # XXX Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author("oddluck", "oddluck", "oddluck@riseup.net") -__maintainer__ = {} +__maintainer__ = supybot.authors.unknown # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/GoogleCloud/setup.py b/GoogleCloud/setup.py new file mode 100644 index 0000000..b98659f --- /dev/null +++ b/GoogleCloud/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'GoogleCloud', + install_requires=[ + 'requests', + ], +) diff --git a/HuntNFish/setup.py b/HuntNFish/setup.py new file mode 100644 index 0000000..b8b4094 --- /dev/null +++ b/HuntNFish/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'HuntNFish', +) diff --git a/IMDb/setup.py b/IMDb/setup.py new file mode 100644 index 0000000..3d3ccfc --- /dev/null +++ b/IMDb/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'IMDb', +) diff --git a/Jeopardy/setup.py b/Jeopardy/setup.py new file mode 100644 index 0000000..b748de0 --- /dev/null +++ b/Jeopardy/setup.py @@ -0,0 +1,13 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Jeopardy', + install_requires=[ + 'beautifulsoup4', + 'ftfy', + 'jinja2', + 'requests', + 'textdistance', + 'unidecode', + ], +) diff --git a/Lyrics/setup.py b/Lyrics/setup.py new file mode 100644 index 0000000..af6c289 --- /dev/null +++ b/Lyrics/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Lyrics', + install_requires=[ + 'plyrics3', + ], +) diff --git a/NBA/setup.py b/NBA/setup.py new file mode 100644 index 0000000..2d2d440 --- /dev/null +++ b/NBA/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'NBA', + install_requires=[ + 'pendulum', + ], +) diff --git a/NFL/setup.py b/NFL/setup.py new file mode 100644 index 0000000..7d5184d --- /dev/null +++ b/NFL/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'NFL', + install_requires=[ + 'pendulum', + 'roman_numerals', + ], +) diff --git a/NHL/setup.py b/NHL/setup.py new file mode 100644 index 0000000..f86516a --- /dev/null +++ b/NHL/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'NHL', + install_requires=[ + 'pendulum', + 'requests', + ], +) diff --git a/Odds/setup.py b/Odds/setup.py new file mode 100644 index 0000000..a98e594 --- /dev/null +++ b/Odds/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Odds', + install_requires=[ + 'pendulum', + 'requests', + ], +) diff --git a/PGA/setup.py b/PGA/setup.py new file mode 100644 index 0000000..02da466 --- /dev/null +++ b/PGA/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'PGA', + install_requires=[ + 'pendulum', + 'requests', + ], +) diff --git a/Soccer/setup.py b/Soccer/setup.py new file mode 100644 index 0000000..fd2d642 --- /dev/null +++ b/Soccer/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Soccer', + install_requires=[ + 'pendulum', + 'requests', + ], +) diff --git a/TVMaze/setup.py b/TVMaze/setup.py new file mode 100644 index 0000000..747d2a4 --- /dev/null +++ b/TVMaze/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'TVMaze', + install_requires=[ + 'pendulum', + 'requests', + ], +) diff --git a/TextAdventures/setup.py b/TextAdventures/setup.py new file mode 100644 index 0000000..bf6e843 --- /dev/null +++ b/TextAdventures/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'TextAdventures', + install_requires=[ + 'pexpect', + ], +) diff --git a/TextArt/setup.py b/TextArt/setup.py new file mode 100644 index 0000000..54c0bbc --- /dev/null +++ b/TextArt/setup.py @@ -0,0 +1,13 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'TextArt', + install_requires=[ + 'beautifulsoup4', + 'numpy', + 'pexpect', + 'pillow', + 'pyimgur', + 'requests', + ], +) diff --git a/TimeBomb/setup.py b/TimeBomb/setup.py new file mode 100644 index 0000000..9420a08 --- /dev/null +++ b/TimeBomb/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'TimeBomb', +) diff --git a/Trackers/setup.py b/Trackers/setup.py new file mode 100644 index 0000000..ab8d541 --- /dev/null +++ b/Trackers/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Trackers', +) diff --git a/TriviaTime/setup.py b/TriviaTime/setup.py new file mode 100644 index 0000000..fa6d439 --- /dev/null +++ b/TriviaTime/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'TriviaTime', +) diff --git a/Tweety/setup.py b/Tweety/setup.py new file mode 100644 index 0000000..c2bcaf7 --- /dev/null +++ b/Tweety/setup.py @@ -0,0 +1,9 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Tweety', + install_requires=[ + 'requests', + 'requests_oauthlib', + ], +) diff --git a/UNO/setup.py b/UNO/setup.py new file mode 100644 index 0000000..89e437e --- /dev/null +++ b/UNO/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'UNO', +) diff --git a/Undercut/setup.py b/Undercut/setup.py new file mode 100644 index 0000000..ca16c87 --- /dev/null +++ b/Undercut/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Undercut', +) diff --git a/UndernetX/setup.py b/UndernetX/setup.py new file mode 100644 index 0000000..77eff5f --- /dev/null +++ b/UndernetX/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'UndernetX', +) diff --git a/Unicode/setup.py b/Unicode/setup.py new file mode 100644 index 0000000..dff8e97 --- /dev/null +++ b/Unicode/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Unicode', +) diff --git a/UrbanDictionary/setup.py b/UrbanDictionary/setup.py new file mode 100644 index 0000000..a2c6b05 --- /dev/null +++ b/UrbanDictionary/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'UrbanDictionary', +) diff --git a/Weed/setup.py b/Weed/setup.py new file mode 100644 index 0000000..62b09c9 --- /dev/null +++ b/Weed/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'Weed', + install_requires=[ + 'requests', + ], +) diff --git a/WolframAlpha/setup.py b/WolframAlpha/setup.py new file mode 100644 index 0000000..6b14478 --- /dev/null +++ b/WolframAlpha/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'WolframAlpha', +) diff --git a/WordGames/setup.py b/WordGames/setup.py new file mode 100644 index 0000000..e806437 --- /dev/null +++ b/WordGames/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'WordGames', +) diff --git a/WorldTime/setup.py b/WorldTime/setup.py new file mode 100644 index 0000000..e782525 --- /dev/null +++ b/WorldTime/setup.py @@ -0,0 +1,8 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'WorldTime', + install_requires=[ + 'pendulum', + ], +) diff --git a/YouTube/__init__.py b/YouTube/__init__.py index cba98fa..a4c8d0c 100644 --- a/YouTube/__init__.py +++ b/YouTube/__init__.py @@ -41,7 +41,7 @@ __version__ = "2020.05.21+git" # XXX Replace this with an appropriate author or supybot.Author instance. __author__ = supybot.Author("oddluck", "oddluck", "oddluck@riseup.net") -__maintainer__ = {} +__maintainer__ = supybot.authors.unknown # This is a dictionary mapping supybot.Author instances to lists of # contributions. diff --git a/YouTube/setup.py b/YouTube/setup.py new file mode 100644 index 0000000..5f4932c --- /dev/null +++ b/YouTube/setup.py @@ -0,0 +1,5 @@ +from supybot.setup import plugin_setup + +plugin_setup( + 'YouTube', +)