mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-14 22:49:23 +01:00
Add BadWords plugin and local modules for Dict, Math, Google, RSS
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
parent
4e8dde4994
commit
3f773f9f2a
19
setup.py
19
setup.py
@ -34,6 +34,7 @@ plugins = [
|
|||||||
'Alias',
|
'Alias',
|
||||||
'Anonymous',
|
'Anonymous',
|
||||||
'AutoMode',
|
'AutoMode',
|
||||||
|
'BadWords',
|
||||||
'Channel',
|
'Channel',
|
||||||
'ChannelLogger',
|
'ChannelLogger',
|
||||||
'ChannelStats',
|
'ChannelStats',
|
||||||
@ -140,13 +141,27 @@ packages = ['supybot',
|
|||||||
'supybot.drivers',
|
'supybot.drivers',
|
||||||
'supybot.plugins',] + \
|
'supybot.plugins',] + \
|
||||||
['supybot.plugins.'+s for s in plugins] + \
|
['supybot.plugins.'+s for s in plugins] + \
|
||||||
['supybot.plugins.Time.dateutil',]
|
[
|
||||||
|
'supybot.plugins.Dict.local',
|
||||||
|
'supybot.plugins.Math.local',
|
||||||
|
'supybot.plugins.Google.local',
|
||||||
|
'supybot.plugins.Google.local.simplejson',
|
||||||
|
'supybot.plugins.RSS.local',
|
||||||
|
'supybot.plugins.Time.dateutil',
|
||||||
|
]
|
||||||
|
|
||||||
package_dir = {'supybot': 'src',
|
package_dir = {'supybot': 'src',
|
||||||
'supybot.utils': 'src/utils',
|
'supybot.utils': 'src/utils',
|
||||||
'supybot.plugins': 'plugins',
|
'supybot.plugins': 'plugins',
|
||||||
'supybot.drivers': 'src/drivers',
|
'supybot.drivers': 'src/drivers',
|
||||||
'supybot.plugins.Time.dateutil': 'plugins/Time/dateutil',}
|
'supybot.plugins.Google.local': 'plugins/Google/local',
|
||||||
|
'supybot.plugins.Google.local.simplejson':
|
||||||
|
'plugins/Google/local/simplejson',
|
||||||
|
'supybot.plugins.Dict.local': 'plugins/Dict/local',
|
||||||
|
'supybot.plugins.Math.local': 'plugins/Math/local',
|
||||||
|
'supybot.plugins.RSS.local': 'plugins/RSS/local',
|
||||||
|
'supybot.plugins.Time.dateutil': 'plugins/Time/dateutil',
|
||||||
|
}
|
||||||
|
|
||||||
for plugin in plugins:
|
for plugin in plugins:
|
||||||
package_dir['supybot.plugins.' + plugin] = 'plugins/' + plugin
|
package_dir['supybot.plugins.' + plugin] = 'plugins/' + plugin
|
||||||
|
Loading…
Reference in New Issue
Block a user