7c094f8ef8
Ignore-this: 68006fd9b6602ad039904427e7b33daf * Rename the supybot plugin: MeetBot -> Meeting * Split the non-supybot specif parts into the `ircmeeting` Python module. * Code changes to support these changes. * This is a big change so it's expected to be a little bit messy. This patch may depend on others until things get sorted out. darcs-hash:20101129040316-82ea9-e8ce7671c5b765551b98444dc082a9be6011dc4f.gz
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.Meeting',
|
|
'ircmeeting'],
|
|
package_dir={'supybot.plugins.Meeting':'Meeting'},
|
|
package_data={'ircmeeting':['*.html', '*.txt', '*.css']},
|
|
author="Richard Darst",
|
|
author_email="rkd@zgib.net"
|
|
)
|