Mercurial > libervia-pubsub
comparison setup.py @ 155:5191ba7c4df8
Work towards first release 0.5.0.
- Add licensing information (MIT)
- Improve installation instructions.
- Use new plugins framework in twisted.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Mon, 21 Aug 2006 16:05:35 +0000 |
parents | |
children | 0c9001bc7f58 |
comparison
equal
deleted
inserted
replaced
154:bd8e58c73370 | 155:5191ba7c4df8 |
---|---|
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 ) |