Mercurial > libervia-pubsub
comparison setup.py @ 189:c61034369463
Released Idavoll 0.7.0.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Tue, 22 Apr 2008 13:15:53 +0000 |
parents | bd88658dbca3 |
children | 6e6c89eca9db |
comparison
equal
deleted
inserted
replaced
188:a5d267289e92 | 189:c61034369463 |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 | 2 |
3 # Copyright (c) 2003-2006 Ralph Meijer | 3 # Copyright (c) 2003-2006 Ralph Meijer |
4 # See LICENSE for details. | 4 # See LICENSE for details. |
5 | 5 |
6 from distutils.core import setup | 6 from setuptools import setup |
7 | 7 |
8 setup(name='idavoll', | 8 setup(name='idavoll', |
9 version='0.6.0', | 9 version='0.7.0', |
10 description='Jabber Publish-Subscribe Service Component', | 10 description='Jabber Publish-Subscribe Service Component', |
11 author='Ralph Meijer', | 11 author='Ralph Meijer', |
12 author_email='ralphm@ik.nu', | 12 author_email='ralphm@ik.nu', |
13 url='http://idavoll.ik.nu/', | 13 url='http://idavoll.ik.nu/', |
14 license='MIT', | 14 license='MIT', |
15 packages=[ | 15 packages=[ |
16 'idavoll', | 16 'idavoll', |
17 'idavoll.test', | 17 'idavoll.test', |
18 'twisted.plugins', | 18 'twisted.plugins', |
19 ], | 19 ], |
20 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py']} | 20 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py', |
21 'twisted/plugins/idavoll_http.py']}, | |
22 zip_safe=False, | |
21 ) | 23 ) |