From: Zooko O'Whielacronx Date: Sat, 25 Oct 2008 13:47:39 +0000 (-0700) Subject: setup: reorder dependencies to be sort of increasing order of how much they depend... X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=7912f9ff2700e0e7f74338b42277045dc710777c;p=tahoe-lafs%2Ftahoe-lafs.git setup: reorder dependencies to be sort of increasing order of how much they depend on other stuff Not that the order makes any different to how it gets installed, as far as I can tell. --- diff --git a/_auto_deps.py b/_auto_deps.py index 46d455ca..1d0afdf1 100644 --- a/_auto_deps.py +++ b/_auto_deps.py @@ -1,19 +1,20 @@ -install_requires=["zfec >= 1.1.0", - "foolscap[secure_connections] >= 0.3.1", - "simplejson >= 1.4", +install_requires=[ + # we require 0.6c8 to build, but can handle older versions + # to run + "setuptools >= 0.6a9", # pycryptopp < 0.5 had a bug which, using a Microsoft # compiler, or using some versions of g++ while linking # against certain older versions of Crypto++, would cause # incorrect AES results. "pycryptopp >= 0.5", - "Nevow >= 0.6.0", + "zfec >= 1.1.0", + "simplejson >= 1.4", + "zope.interface", "Twisted >= 2.4.0", - - # we require 0.6c8 to build, but can handle older versions - # to run - "setuptools >= 0.6a9", + "foolscap[secure_connections] >= 0.3.1", + "Nevow >= 0.6.0", ] import sys if hasattr(sys, 'frozen'):