view setup.py @ 167:ef22e4150caa

Move protocol implementations (pubsub, disco, forms) to and depend on wokkel. Author: ralphm Fixes: #4
author Ralph Meijer <ralphm@ik.nu>
date Wed, 03 Oct 2007 12:41:43 +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']}
)