meetbot/setup.py
Garrett Holmstrom 319b5547a8 Fix setup.py package names
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
2012-11-21 20:35:19 +00:00

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"
)