Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
9c3e7c0830 |
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