Overcome old setuptools' inability to convert FTP listings to URLs with
authordbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 6 Mar 2008 03:02:59 +0000 (03:02 +0000)
committerdbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 6 Mar 2008 03:02:59 +0000 (03:02 +0000)
a direct URI for python-memcached

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1255 9efc2488-bf62-4759-914b-345cdb29e865

src/python/setup.py

index d016315..1b841ae 100644 (file)
@@ -6,12 +6,13 @@ setup(name='OpenSRF',
     version='1.0.0',
     install_requires=[
         'dnspython', # required by pyxmpp
-       'python-memcached', # older setuptools fails to resolve this
+       'python-memcached',
         'pyxmpp>=1.0.0',
         'simplejson>=1.7.1'
     ],
     dependency_links = [
         "http://pyxmpp.jajcus.net/downloads/",
+        "ftp://ftp.tummy.com/pub/python-memcached/python-memcached-latest.tar.gz"
     ],
     description='OpenSRF Python Modules',
     author='Bill Erickson',