Mercurial > libervia-pubsub
annotate setup.py @ 165:0c9001bc7f58
Release 0.6.0.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Thu, 18 Jan 2007 14:06:14 +0000 |
parents | 5191ba7c4df8 |
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 ) |