Mercurial > libervia-pubsub
view setup.py @ 169:96afb248df5e
Fix typos in service creation. Make disco not respond when a resource is provided.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Thu, 04 Oct 2007 08:03:51 +0000 |
parents | 0c9001bc7f58 |
children | bd88658dbca3 |
line wrap: on
line source
#!/usr/bin/env python # Copyright (c) 2003-2006 Ralph Meijer # See LICENSE for details. from distutils.core import setup setup(name='idavoll', version='0.6.0', description='Jabber Publish-Subscribe Service Component', author='Ralph Meijer', author_email='ralphm@ik.nu', url='http://idavoll.ik.nu/', license='MIT', packages=[ 'idavoll', 'twisted.plugins', ], package_data={'twisted.plugins': ['twisted/plugins/idavoll.py']} )