From 74521ae41fa6d2aedc3cd24bd49372d36d80e0b7 Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Sat, 5 Feb 2022 20:40:49 +0100 Subject: [PATCH] all: Add setup.py, to be installable via pip (#106) --- AQI/setup.py | 6 ++++++ BirdLGGo/setup.py | 6 ++++++ GitLab/setup.py | 6 ++++++ LastFM/setup.py | 6 ++++++ MCInfo/setup.py | 9 +++++++++ NoTrigger/setup.py | 6 ++++++ NuWeather/setup.py | 9 +++++++++ OperUp/setup.py | 6 ++++++ PkgInfo/setup.py | 6 ++++++ Quakenet/setup.py | 6 ++++++ RelayNext/setup.py | 6 ++++++ Restart/setup.py | 6 ++++++ RhymeZone/setup.py | 9 +++++++++ SupyMisc/setup.py | 6 ++++++ SysDNS/setup.py | 6 ++++++ TranslateParty/setup.py | 6 ++++++ Wikifetch/setup.py | 6 ++++++ 17 files changed, 111 insertions(+) create mode 100644 AQI/setup.py create mode 100644 BirdLGGo/setup.py create mode 100644 GitLab/setup.py create mode 100644 LastFM/setup.py create mode 100644 MCInfo/setup.py create mode 100644 NoTrigger/setup.py create mode 100644 NuWeather/setup.py create mode 100644 OperUp/setup.py create mode 100644 PkgInfo/setup.py create mode 100644 Quakenet/setup.py create mode 100644 RelayNext/setup.py create mode 100644 Restart/setup.py create mode 100644 RhymeZone/setup.py create mode 100644 SupyMisc/setup.py create mode 100644 SysDNS/setup.py create mode 100644 TranslateParty/setup.py create mode 100644 Wikifetch/setup.py diff --git a/AQI/setup.py b/AQI/setup.py new file mode 100644 index 0000000..a49e117 --- /dev/null +++ b/AQI/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'AQI', +) diff --git a/BirdLGGo/setup.py b/BirdLGGo/setup.py new file mode 100644 index 0000000..d802030 --- /dev/null +++ b/BirdLGGo/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'BirdLGGo', +) diff --git a/GitLab/setup.py b/GitLab/setup.py new file mode 100644 index 0000000..66a817e --- /dev/null +++ b/GitLab/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'GitLab', +) diff --git a/LastFM/setup.py b/LastFM/setup.py new file mode 100644 index 0000000..32f9be1 --- /dev/null +++ b/LastFM/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'LastFM', +) diff --git a/MCInfo/setup.py b/MCInfo/setup.py new file mode 100644 index 0000000..2e0085f --- /dev/null +++ b/MCInfo/setup.py @@ -0,0 +1,9 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'MCInfo', + install_requires=[ + 'bs4', + ], +) diff --git a/NoTrigger/setup.py b/NoTrigger/setup.py new file mode 100644 index 0000000..2b92fcb --- /dev/null +++ b/NoTrigger/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'NoTrigger', +) diff --git a/NuWeather/setup.py b/NuWeather/setup.py new file mode 100644 index 0000000..fec0250 --- /dev/null +++ b/NuWeather/setup.py @@ -0,0 +1,9 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'NuWeather', + install_requires=[ + 'pendulum', + ], +) diff --git a/OperUp/setup.py b/OperUp/setup.py new file mode 100644 index 0000000..987cbe7 --- /dev/null +++ b/OperUp/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'OperUp', +) diff --git a/PkgInfo/setup.py b/PkgInfo/setup.py new file mode 100644 index 0000000..338dbf6 --- /dev/null +++ b/PkgInfo/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'PkgInfo', +) diff --git a/Quakenet/setup.py b/Quakenet/setup.py new file mode 100644 index 0000000..c92d602 --- /dev/null +++ b/Quakenet/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'Quakenet', +) diff --git a/RelayNext/setup.py b/RelayNext/setup.py new file mode 100644 index 0000000..ca971e7 --- /dev/null +++ b/RelayNext/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'RelayNext', +) diff --git a/Restart/setup.py b/Restart/setup.py new file mode 100644 index 0000000..1ee3051 --- /dev/null +++ b/Restart/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'Restart', +) diff --git a/RhymeZone/setup.py b/RhymeZone/setup.py new file mode 100644 index 0000000..85b9e37 --- /dev/null +++ b/RhymeZone/setup.py @@ -0,0 +1,9 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'RhymeZone', + install_requires=[ + 'bs4', + ], +) diff --git a/SupyMisc/setup.py b/SupyMisc/setup.py new file mode 100644 index 0000000..53f16ca --- /dev/null +++ b/SupyMisc/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'SupyMisc', +) diff --git a/SysDNS/setup.py b/SysDNS/setup.py new file mode 100644 index 0000000..1233760 --- /dev/null +++ b/SysDNS/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'SysDNS', +) diff --git a/TranslateParty/setup.py b/TranslateParty/setup.py new file mode 100644 index 0000000..cef73f7 --- /dev/null +++ b/TranslateParty/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'TranslateParty', +) diff --git a/Wikifetch/setup.py b/Wikifetch/setup.py new file mode 100644 index 0000000..a27aff6 --- /dev/null +++ b/Wikifetch/setup.py @@ -0,0 +1,6 @@ + +from supybot.setup import plugin_setup + +plugin_setup( + 'Wikifetch', +)