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:
Valentin Lorentz 2022-12-12 21:48:44 +01:00
parent f9066b25c0
commit 17f47748a8
5 changed files with 29 additions and 0 deletions

9
Bugreporter/setup.py Normal file
View File

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

5
Bugtracker/setup.py Normal file
View File

@ -0,0 +1,5 @@
from supybot.setup import plugin_setup
plugin_setup(
'Bugtracker',
)

5
Encyclopedia/setup.py Normal file
View File

@ -0,0 +1,5 @@
from supybot.setup import plugin_setup
plugin_setup(
'Encyclopedia',
)

5
PackageInfo/setup.py Normal file
View File

@ -0,0 +1,5 @@
from supybot.setup import plugin_setup
plugin_setup(
'PackageInfo',
)

5
Random/setup.py Normal file
View File

@ -0,0 +1,5 @@
from supybot.setup import plugin_setup
plugin_setup(
'Random',
)