155
|
1 #!/usr/bin/env python |
|
2 |
|
3 # Copyright (c) 2003-2006 Ralph Meijer |
|
4 # See LICENSE for details. |
|
5 |
189
|
6 from setuptools import setup |
155
|
7 |
|
8 setup(name='idavoll', |
189
|
9 version='0.7.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', |
184
|
17 'idavoll.test', |
155
|
18 'twisted.plugins', |
|
19 ], |
189
|
20 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py', |
|
21 'twisted/plugins/idavoll_http.py']}, |
|
22 zip_safe=False, |
155
|
23 ) |