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', +)