Mercurial > libervia-pubsub
view setup.py @ 163:1701c0e2c707
Add --dbpass option for passing a password to the PostgreSQL backend.
Author: edwinm
Reviewer: ralphm
Fixes #1
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Thu, 07 Sep 2006 11:13:46 +0000 |
parents | 5191ba7c4df8 |
children | 0c9001bc7f58 |
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.5.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']} )