mirror of
https://github.com/jlu5/SupyPlugins.git
synced 2025-04-26 13:01:07 -05:00
all: Add setup.py, to be installable via pip (#106)
This commit is contained in:
parent
35198fb6e0
commit
74521ae41f
6
AQI/setup.py
Normal file
6
AQI/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'AQI',
|
||||||
|
)
|
6
BirdLGGo/setup.py
Normal file
6
BirdLGGo/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'BirdLGGo',
|
||||||
|
)
|
6
GitLab/setup.py
Normal file
6
GitLab/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'GitLab',
|
||||||
|
)
|
6
LastFM/setup.py
Normal file
6
LastFM/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'LastFM',
|
||||||
|
)
|
9
MCInfo/setup.py
Normal file
9
MCInfo/setup.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'MCInfo',
|
||||||
|
install_requires=[
|
||||||
|
'bs4',
|
||||||
|
],
|
||||||
|
)
|
6
NoTrigger/setup.py
Normal file
6
NoTrigger/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'NoTrigger',
|
||||||
|
)
|
9
NuWeather/setup.py
Normal file
9
NuWeather/setup.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'NuWeather',
|
||||||
|
install_requires=[
|
||||||
|
'pendulum',
|
||||||
|
],
|
||||||
|
)
|
6
OperUp/setup.py
Normal file
6
OperUp/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'OperUp',
|
||||||
|
)
|
6
PkgInfo/setup.py
Normal file
6
PkgInfo/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'PkgInfo',
|
||||||
|
)
|
6
Quakenet/setup.py
Normal file
6
Quakenet/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'Quakenet',
|
||||||
|
)
|
6
RelayNext/setup.py
Normal file
6
RelayNext/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'RelayNext',
|
||||||
|
)
|
6
Restart/setup.py
Normal file
6
Restart/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'Restart',
|
||||||
|
)
|
9
RhymeZone/setup.py
Normal file
9
RhymeZone/setup.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'RhymeZone',
|
||||||
|
install_requires=[
|
||||||
|
'bs4',
|
||||||
|
],
|
||||||
|
)
|
6
SupyMisc/setup.py
Normal file
6
SupyMisc/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'SupyMisc',
|
||||||
|
)
|
6
SysDNS/setup.py
Normal file
6
SysDNS/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'SysDNS',
|
||||||
|
)
|
6
TranslateParty/setup.py
Normal file
6
TranslateParty/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'TranslateParty',
|
||||||
|
)
|
6
Wikifetch/setup.py
Normal file
6
Wikifetch/setup.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'Wikifetch',
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user