From: dbs Date: Sat, 16 Feb 2008 18:12:57 +0000 (+0000) Subject: x.y.z version numbering seems to make setuptools happier... okay X-Git-Tag: osrf_rel_2_0_1~718 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e8a4a367fbc85e2670d6aa8d568af535cf329280;p=OpenSRF.git x.y.z version numbering seems to make setuptools happier... okay git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1249 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/python/setup.py b/src/python/setup.py index 0dca72b..d016315 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -3,15 +3,15 @@ from setuptools import setup setup(name='OpenSRF', - version='1.0', + version='1.0.0', install_requires=[ 'dnspython', # required by pyxmpp - 'python_memcached', + 'python-memcached', # older setuptools fails to resolve this 'pyxmpp>=1.0.0', 'simplejson>=1.7.1' ], dependency_links = [ - "http://pyxmpp.jajcus.net/downloads/" + "http://pyxmpp.jajcus.net/downloads/", ], description='OpenSRF Python Modules', author='Bill Erickson',