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
This commit is contained in:
Garrett Holmstrom 2012-11-17 23:43:53 -08:00 committed by Jeremy Stanley
parent a306d7c1dc
commit 319b5547a8
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@ from distutils.core import setup
setup(name='MeetBot',
description='IRC Meeting Helper',
version='0.1.4',
packages=['supybot.plugins.Meeting',
packages=['supybot.plugins.MeetBot',
'ircmeeting'],
package_dir={'supybot.plugins.Meeting':'Meeting'},
package_dir={'supybot.plugins.MeetBot':'MeetBot'},
package_data={'ircmeeting':['*.html', '*.txt', '*.css']},
author="Richard Darst",
author_email="rkd@zgib.net"