view setup.py @ 208:cc4f45ef793e

Commit 0.8.1 release to SVN.
author Ralph Meijer <ralphm@ik.nu>
date Tue, 09 Sep 2008 14:54:33 +0000
parents 43a4d0d6c076
children edabaa535476
line wrap: on
line source

#!/usr/bin/env python

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

import sys
from setuptools import setup

install_requires = [
    'wokkel >= 0.4.0',
    'simplejson',
]

if sys.version_info < (2, 5):
    install_requires.append('uuid')

setup(name='idavoll',
      version='0.8.1',
      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']},
      data_files=[('share/idavoll', ['db/pubsub.sql',
                                     'db/gateway.sql',
                                     'db/to_idavoll_0.8.sql'])],
      zip_safe=False,
      install_requires=install_requires,
)