Compare commits

...

1 Commits

5 changed files with 34 additions and 0 deletions

10
Bugreporter/setup.py Normal file
View 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
View File

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

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