comparison setup.py @ 190:6e6c89eca9db

Make sure optional PostgreSQL connect parameters are passed as None, require wokkel and uuid in setup.py. Release 0.7.2.
author Ralph Meijer <ralphm@ik.nu>
date Sat, 17 May 2008 18:30:39 +0000
parents c61034369463
children 8ab16e319bb8
comparison
equal deleted inserted replaced
189:c61034369463 190:6e6c89eca9db
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2003-2006 Ralph Meijer 3 # Copyright (c) 2003-2008 Ralph Meijer
4 # See LICENSE for details. 4 # See LICENSE for details.
5 5
6 import sys
6 from setuptools import setup 7 from setuptools import setup
7 8
9 install_requires = ['wokkel >= 0.3.1']
10
11 if sys.version_info < (2, 5):
12 install_requires.append('uuid')
13
8 setup(name='idavoll', 14 setup(name='idavoll',
9 version='0.7.0', 15 version='0.7.2',
10 description='Jabber Publish-Subscribe Service Component', 16 description='Jabber Publish-Subscribe Service Component',
11 author='Ralph Meijer', 17 author='Ralph Meijer',
12 author_email='ralphm@ik.nu', 18 author_email='ralphm@ik.nu',
13 url='http://idavoll.ik.nu/', 19 url='http://idavoll.ik.nu/',
14 license='MIT', 20 license='MIT',
18 'twisted.plugins', 24 'twisted.plugins',
19 ], 25 ],
20 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py', 26 package_data={'twisted.plugins': ['twisted/plugins/idavoll.py',
21 'twisted/plugins/idavoll_http.py']}, 27 'twisted/plugins/idavoll_http.py']},
22 zip_safe=False, 28 zip_safe=False,
29 install_requires=install_requires,
23 ) 30 )