Mercurial > libervia-pubsub
comparison setup.py @ 212:edabaa535476
These files also belong to the Idavoll 0.9.0 release.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Wed, 08 Apr 2009 09:07:28 +0000 |
parents | cc4f45ef793e |
children | f94c3eb38b75 |
comparison
equal
deleted
inserted
replaced
211:bfc198af5d27 | 212:edabaa535476 |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 | 2 |
3 # Copyright (c) 2003-2008 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 | 8 |
9 install_requires = [ | 9 install_requires = [ |
10 'wokkel >= 0.4.0', | 10 'wokkel >= 0.5.0', |
11 'simplejson', | 11 'simplejson', |
12 ] | 12 ] |
13 | 13 |
14 if sys.version_info < (2, 5): | 14 if sys.version_info < (2, 5): |
15 install_requires.append('uuid') | 15 install_requires.append('uuid') |
16 | 16 |
17 setup(name='idavoll', | 17 setup(name='idavoll', |
18 version='0.8.1', | 18 version='0.9.0', |
19 description='Jabber Publish-Subscribe Service Component', | 19 description='Jabber Publish-Subscribe Service Component', |
20 author='Ralph Meijer', | 20 author='Ralph Meijer', |
21 author_email='ralphm@ik.nu', | 21 author_email='ralphm@ik.nu', |
22 url='http://idavoll.ik.nu/', | 22 url='http://idavoll.ik.nu/', |
23 license='MIT', | 23 license='MIT', |