eec003e3e3
Apart from just being the modern thing to do, this allows bdist_wheel to work, which is important for installing with our existing container python-builder tooling. Change-Id: Id884f7db1dcb59406e6f08cd9ec904fe3a32d2e9
13 lines
382 B
Python
13 lines
382 B
Python
from setuptools 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"
|
|
)
|