319b5547a8
It looks like MeetBot's setup.py never got updated when the plugin's name changed back to MeetBot. The attached patch fixes that so setup.py starts working correctly again. Fixes bug 1080268. Change-Id: I76ad5e5c66f1f44aa260c76ed7392887fc610839
13 lines
386 B
Python
13 lines
386 B
Python
|
|
from distutils.core import setup
|
|
setup(name='MeetBot',
|
|
description='IRC Meeting Helper',
|
|
version='0.1.4',
|
|
packages=['supybot.plugins.MeetBot',
|
|
'ircmeeting'],
|
|
package_dir={'supybot.plugins.MeetBot':'MeetBot'},
|
|
package_data={'ircmeeting':['*.html', '*.txt', '*.css']},
|
|
author="Richard Darst",
|
|
author_email="rkd@zgib.net"
|
|
)
|