Add setup.py files to make plugins installable
For example: ``` pip3 install "git+https://git.launchpad.net/~krytarik/ubuntu-bots/+git/ubuntu-bots#subdirectory=Bugreporter" ```
This commit is contained in:
10
Bugreporter/setup.py
Normal file
10
Bugreporter/setup.py
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'Bugreporter',
|
||||||
|
install_requires=[
|
||||||
|
'bs4',
|
||||||
|
'feedparser',
|
||||||
|
'requests',
|
||||||
|
],
|
||||||
|
)
|
9
Bugtracker/setup.py
Normal file
9
Bugtracker/setup.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'Bugtracker',
|
||||||
|
install_requires=[
|
||||||
|
'launchpadlib',
|
||||||
|
'pysimplesoap',
|
||||||
|
],
|
||||||
|
)
|
5
Encyclopedia/setup.py
Normal file
5
Encyclopedia/setup.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'Encyclopedia',
|
||||||
|
)
|
5
PackageInfo/setup.py
Normal file
5
PackageInfo/setup.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'PackageInfo',
|
||||||
|
)
|
5
Random/setup.py
Normal file
5
Random/setup.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
from supybot.setup import plugin_setup
|
||||||
|
|
||||||
|
plugin_setup(
|
||||||
|
'Random',
|
||||||
|
)
|
Reference in New Issue
Block a user