comparison setup.py @ 217:f94c3eb38b75

Release Idavoll 0.9.1.
author Ralph Meijer <ralphm@ik.nu>
date Mon, 07 Sep 2009 07:01:37 +0000
parents edabaa535476
children c15c2fc058ed
comparison
equal deleted inserted replaced
216:53d2c0019458 217:f94c3eb38b75
3 # Copyright (c) 2003-2009 Ralph Meijer 3 # Copyright (c) 2003-2009 Ralph Meijer
4 # See LICENSE for details. 4 # See LICENSE for details.
5 5
6 import sys 6 import sys
7 from setuptools import setup 7 from setuptools import setup
8 from idavoll import __version__
8 9
9 install_requires = [ 10 install_requires = [
10 'wokkel >= 0.5.0', 11 'wokkel >= 0.5.0',
11 'simplejson', 12 'simplejson',
12 ] 13 ]
13 14
14 if sys.version_info < (2, 5): 15 if sys.version_info < (2, 5):
15 install_requires.append('uuid') 16 install_requires.append('uuid')
16 17
17 setup(name='idavoll', 18 setup(name='idavoll',
18 version='0.9.0', 19 version=__version__,
19 description='Jabber Publish-Subscribe Service Component', 20 description='Jabber Publish-Subscribe Service Component',
20 author='Ralph Meijer', 21 author='Ralph Meijer',
21 author_email='ralphm@ik.nu', 22 author_email='ralphm@ik.nu',
22 url='http://idavoll.ik.nu/', 23 url='http://idavoll.ik.nu/',
23 license='MIT', 24 license='MIT',
24 packages=[ 25 packages=[
25 'idavoll', 26 'idavoll',
26 'idavoll.test', 27 'idavoll.test',
27 'twisted.plugins',
28 ], 28 ],
29 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py', 29 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py',
30 'twisted/plugins/idavoll_http.py']}, 30 'twisted/plugins/idavoll_http.py']},
31 data_files=[('share/idavoll', ['db/pubsub.sql', 31 data_files=[('share/idavoll', ['db/pubsub.sql',
32 'db/gateway.sql', 32 'db/gateway.sql',