view setup.py @ 189:c61034369463

Released Idavoll 0.7.0.
author Ralph Meijer <ralphm@ik.nu>
date Tue, 22 Apr 2008 13:15:53 +0000
parents bd88658dbca3
children 6e6c89eca9db
line wrap: on
line source

#!/usr/bin/env python

# Copyright (c) 2003-2006 Ralph Meijer
# See LICENSE for details.

from setuptools import setup

setup(name='idavoll',
      version='0.7.0',
      description='Jabber Publish-Subscribe Service Component',
      author='Ralph Meijer',
      author_email='ralphm@ik.nu',
      url='http://idavoll.ik.nu/',
      license='MIT',
      packages=[
          'idavoll',
          'idavoll.test',
          'twisted.plugins',
      ],
      package_data={'twisted.plugins': ['twisted/plugins/idavoll.py',
                                        'twisted/plugins/idavoll_http.py']},
      zip_safe=False,
)