Mercurial > libervia-pubsub
annotate 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 |
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', | |
165 | 9 version='0.6.0', |
155 | 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 ) |