Mercurial > libervia-pubsub
annotate 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 |
rev | line source |
---|---|
155 | 1 #!/usr/bin/env python |
2 | |
3 # Copyright (c) 2003-2006 Ralph Meijer | |
4 # See LICENSE for details. | |
5 | |
6 from distutils.core import setup | |
7 | |
8 setup(name='idavoll', | |
9 version='0.5.0', | |
10 description='Jabber Publish-Subscribe Service Component', | |
11 author='Ralph Meijer', | |
12 author_email='ralphm@ik.nu', | |
13 url='http://idavoll.ik.nu/', | |
14 license='MIT', | |
15 packages=[ | |
16 'idavoll', | |
17 'twisted.plugins', | |
18 ], | |
19 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py']} | |
20 ) |