all: Add setup.py, to be installable via pip (#106)

This commit is contained in:
Val Lorentz 2022-02-05 20:40:49 +01:00 committed by GitHub
parent 35198fb6e0
commit 74521ae41f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 111 additions and 0 deletions

6
AQI/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'AQI',
)

6
BirdLGGo/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'BirdLGGo',
)

6
GitLab/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'GitLab',
)

6
LastFM/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'LastFM',
)

9
MCInfo/setup.py Normal file
View File

@ -0,0 +1,9 @@
from supybot.setup import plugin_setup
plugin_setup(
'MCInfo',
install_requires=[
'bs4',
],
)

6
NoTrigger/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'NoTrigger',
)

9
NuWeather/setup.py Normal file
View File

@ -0,0 +1,9 @@
from supybot.setup import plugin_setup
plugin_setup(
'NuWeather',
install_requires=[
'pendulum',
],
)

6
OperUp/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'OperUp',
)

6
PkgInfo/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'PkgInfo',
)

6
Quakenet/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'Quakenet',
)

6
RelayNext/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'RelayNext',
)

6
Restart/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'Restart',
)

9
RhymeZone/setup.py Normal file
View File

@ -0,0 +1,9 @@
from supybot.setup import plugin_setup
plugin_setup(
'RhymeZone',
install_requires=[
'bs4',
],
)

6
SupyMisc/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'SupyMisc',
)

6
SysDNS/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'SysDNS',
)

6
TranslateParty/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'TranslateParty',
)

6
Wikifetch/setup.py Normal file
View File

@ -0,0 +1,6 @@
from supybot.setup import plugin_setup
plugin_setup(
'Wikifetch',
)